Chromium Code Reviews| Index: device/bluetooth/bluez/bluetooth_device_bluez.h |
| diff --git a/device/bluetooth/bluez/bluetooth_device_bluez.h b/device/bluetooth/bluez/bluetooth_device_bluez.h |
| index 521405e8df576cbc203d99425773b01fa00900e1..dc018c99c374bf795771015c950df60809805f7f 100644 |
| --- a/device/bluetooth/bluez/bluetooth_device_bluez.h |
| +++ b/device/bluetooth/bluez/bluetooth_device_bluez.h |
| @@ -61,7 +61,7 @@ class DEVICE_BLUETOOTH_EXPORT BluetoothDeviceBlueZ |
| bool IsGattConnected() const override; |
| bool IsConnectable() const override; |
| bool IsConnecting() const override; |
| - UUIDList GetUUIDs() const override; |
| + UUIDSet GetUUIDs() const override; |
| base::Optional<int8_t> GetInquiryRSSI() const override; |
| base::Optional<int8_t> GetInquiryTxPower() const override; |
| bool ExpectingPinCode() const override; |
| @@ -220,6 +220,8 @@ class DEVICE_BLUETOOTH_EXPORT BluetoothDeviceBlueZ |
| // The dbus object path of the device object. |
| dbus::ObjectPath object_path_; |
| + BluetoothDevice::UUIDSet uuids_; |
|
Jeffrey Yasskin
2016/08/19 22:08:10
I think you don't use this in the .cc file.
ortuno
2016/08/23 00:38:04
Ah right. This was leftover for when I was trying
|
| + |
| // Number of ongoing calls to Connect(). |
| int num_connecting_calls_; |