| Index: device/bluetooth/bluez/bluetooth_device_bluez.cc
|
| diff --git a/device/bluetooth/bluez/bluetooth_device_bluez.cc b/device/bluetooth/bluez/bluetooth_device_bluez.cc
|
| index 9ed6bf1cc4005803a71f2d4aaa1b8c7d4dc1fc28..713c14f0f26657abbf2f8b059cd04de7dda07133 100644
|
| --- a/device/bluetooth/bluez/bluetooth_device_bluez.cc
|
| +++ b/device/bluetooth/bluez/bluetooth_device_bluez.cc
|
| @@ -288,8 +288,9 @@ bool BluetoothDeviceBlueZ::IsConnected() const {
|
| }
|
|
|
| bool BluetoothDeviceBlueZ::IsGattConnected() const {
|
| - NOTIMPLEMENTED();
|
| - return false;
|
| + // Bluez uses the same attribute for GATT Connections and Classic BT
|
| + // Connections.
|
| + return IsConnected();
|
| }
|
|
|
| bool BluetoothDeviceBlueZ::IsConnectable() const {
|
|
|