| Index: device/bluetooth/bluetooth_device_win.cc
|
| diff --git a/device/bluetooth/bluetooth_device_win.cc b/device/bluetooth/bluetooth_device_win.cc
|
| index f6a8b7784d5d095f4ae57d668e81b59d5ddbb5a5..09b84b38fbf26994356c7b70f554ac17bc7a0209 100644
|
| --- a/device/bluetooth/bluetooth_device_win.cc
|
| +++ b/device/bluetooth/bluetooth_device_win.cc
|
| @@ -147,6 +147,18 @@ std::string BluetoothDeviceWin::GetDeviceName() const {
|
| return name_;
|
| }
|
|
|
| +void BluetoothDeviceWin::CreateGattConnectionImpl() {
|
| + // Windows implementation does not use the default CreateGattConnection
|
| + // implementation.
|
| + NOTIMPLEMENTED();
|
| +}
|
| +
|
| +void BluetoothDeviceWin::DisconnectGatt() {
|
| + // Windows implementation does not use the default CreateGattConnection
|
| + // implementation.
|
| + NOTIMPLEMENTED();
|
| +}
|
| +
|
| std::string BluetoothDeviceWin::GetAddress() const {
|
| return address_;
|
| }
|
| @@ -176,6 +188,11 @@ bool BluetoothDeviceWin::IsConnected() const {
|
| return connected_;
|
| }
|
|
|
| +bool BluetoothDeviceWin::IsGattConnected() const {
|
| + NOTIMPLEMENTED();
|
| + return false;
|
| +}
|
| +
|
| bool BluetoothDeviceWin::IsConnectable() const {
|
| return false;
|
| }
|
|
|