OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "device/bluetooth/bluetooth_classic_win_fake.h" |
| 6 |
| 7 #include "base/logging.h" |
| 8 |
| 9 namespace device { |
| 10 namespace win { |
| 11 |
| 12 BluetoothClassicWrapperFake::BluetoothClassicWrapperFake() {} |
| 13 BluetoothClassicWrapperFake::~BluetoothClassicWrapperFake() {} |
| 14 |
| 15 HBLUETOOTH_RADIO_FIND BluetoothClassicWrapperFake::FindFirstRadio( |
| 16 const BLUETOOTH_FIND_RADIO_PARAMS* params, |
| 17 HANDLE* out_handle) { |
| 18 NOTIMPLEMENTED(); |
| 19 return NULL; |
| 20 } |
| 21 |
| 22 DWORD BluetoothClassicWrapperFake::GetRadioInfo( |
| 23 HANDLE handle, |
| 24 PBLUETOOTH_RADIO_INFO out_radio_info) { |
| 25 NOTIMPLEMENTED(); |
| 26 return ERROR_SUCCESS; |
| 27 } |
| 28 |
| 29 BOOL BluetoothClassicWrapperFake::FindRadioClose(HBLUETOOTH_RADIO_FIND handle) { |
| 30 NOTIMPLEMENTED(); |
| 31 return TRUE; |
| 32 } |
| 33 |
| 34 BOOL BluetoothClassicWrapperFake::IsConnectable(HANDLE handle) { |
| 35 NOTIMPLEMENTED(); |
| 36 return TRUE; |
| 37 } |
| 38 |
| 39 HBLUETOOTH_DEVICE_FIND BluetoothClassicWrapperFake::FindFirstDevice( |
| 40 const BLUETOOTH_DEVICE_SEARCH_PARAMS* params, |
| 41 BLUETOOTH_DEVICE_INFO* out_device_info) { |
| 42 NOTIMPLEMENTED(); |
| 43 return NULL; |
| 44 } |
| 45 |
| 46 BOOL BluetoothClassicWrapperFake::FindNextDevice( |
| 47 HBLUETOOTH_DEVICE_FIND handle, |
| 48 BLUETOOTH_DEVICE_INFO* out_device_info) { |
| 49 NOTIMPLEMENTED(); |
| 50 return TRUE; |
| 51 } |
| 52 |
| 53 BOOL BluetoothClassicWrapperFake::FindDeviceClose( |
| 54 HBLUETOOTH_DEVICE_FIND handle) { |
| 55 NOTIMPLEMENTED(); |
| 56 return TRUE; |
| 57 } |
| 58 |
| 59 BOOL BluetoothClassicWrapperFake::EnableDiscovery(HANDLE handle, |
| 60 BOOL is_enable) { |
| 61 NOTIMPLEMENTED(); |
| 62 return TRUE; |
| 63 } |
| 64 |
| 65 BOOL BluetoothClassicWrapperFake::EnableIncomingConnections(HANDLE handle, |
| 66 BOOL is_enable) { |
| 67 NOTIMPLEMENTED(); |
| 68 return TRUE; |
| 69 } |
| 70 } // namespace device |
| 71 } // namespace win |
OLD | NEW |