| Index: device/bluetooth/bluetooth_adapter_win.cc
|
| diff --git a/device/bluetooth/bluetooth_adapter_win.cc b/device/bluetooth/bluetooth_adapter_win.cc
|
| index 8b594e60e8ff2aa542cda146b917fa13ab603cd2..5fcbfa88e3814a4cbbedb98c94be9c9cbaf5f1db 100644
|
| --- a/device/bluetooth/bluetooth_adapter_win.cc
|
| +++ b/device/bluetooth/bluetooth_adapter_win.cc
|
| @@ -15,7 +15,9 @@
|
| #include "base/thread_task_runner_handle.h"
|
| #include "device/bluetooth/bluetooth_device_win.h"
|
| #include "device/bluetooth/bluetooth_socket_thread.h"
|
| +#include "device/bluetooth/bluetooth_socket_win.h"
|
| #include "device/bluetooth/bluetooth_task_manager_win.h"
|
| +#include "device/bluetooth/bluetooth_uuid.h"
|
|
|
| namespace device {
|
|
|
| @@ -165,6 +167,25 @@ void BluetoothAdapterWin::ReadLocalOutOfBandPairingData(
|
| NOTIMPLEMENTED();
|
| }
|
|
|
| +void BluetoothAdapterWin::CreateRfcommService(
|
| + const BluetoothUUID& uuid,
|
| + int channel,
|
| + bool insecure,
|
| + const CreateServiceCallback& callback,
|
| + const CreateServiceErrorCallback& error_callback) {
|
| + // TODO(keybuk): implement.
|
| + NOTIMPLEMENTED();
|
| +}
|
| +
|
| +void BluetoothAdapterWin::CreateL2capService(
|
| + const BluetoothUUID& uuid,
|
| + int psm,
|
| + const CreateServiceCallback& callback,
|
| + const CreateServiceErrorCallback& error_callback) {
|
| + // TODO(keybuk): implement.
|
| + NOTIMPLEMENTED();
|
| +}
|
| +
|
| void BluetoothAdapterWin::RemovePairingDelegateInternal(
|
| BluetoothDevice::PairingDelegate* pairing_delegate) {
|
| }
|
|
|