| Index: device/bluetooth/bluetooth_device_chromeos.cc
|
| diff --git a/device/bluetooth/bluetooth_device_chromeos.cc b/device/bluetooth/bluetooth_device_chromeos.cc
|
| index 97bbe66c0ff377467357a9cdb2ac89280211a13d..29e533355de398dc55ec5e807f0889f1f8b34d10 100644
|
| --- a/device/bluetooth/bluetooth_device_chromeos.cc
|
| +++ b/device/bluetooth/bluetooth_device_chromeos.cc
|
| @@ -179,6 +179,18 @@ std::string BluetoothDeviceChromeOS::GetDeviceName() const {
|
| return properties->alias.value();
|
| }
|
|
|
| +void BluetoothDeviceChromeOS::CreateGattConnectionImpl() {
|
| + // ChromeOS implementation does not use the default CreateGattConnection
|
| + // implementation.
|
| + NOTIMPLEMENTED();
|
| +}
|
| +
|
| +void BluetoothDeviceChromeOS::DisconnectGatt() {
|
| + // ChromeOS implementation does not use the default CreateGattConnection
|
| + // implementation.
|
| + NOTIMPLEMENTED();
|
| +}
|
| +
|
| std::string BluetoothDeviceChromeOS::GetAddress() const {
|
| BluetoothDeviceClient::Properties* properties =
|
| DBusThreadManager::Get()->GetBluetoothDeviceClient()->
|
| @@ -234,6 +246,11 @@ bool BluetoothDeviceChromeOS::IsConnected() const {
|
| return properties->connected.value();
|
| }
|
|
|
| +bool BluetoothDeviceChromeOS::IsGattConnected() const {
|
| + NOTIMPLEMENTED();
|
| + return false;
|
| +}
|
| +
|
| bool BluetoothDeviceChromeOS::IsConnectable() const {
|
| BluetoothInputClient::Properties* input_properties =
|
| DBusThreadManager::Get()->GetBluetoothInputClient()->
|
|
|