| Index: device/bluetooth/dbus/bluetooth_device_client.h
|
| diff --git a/device/bluetooth/dbus/bluetooth_device_client.h b/device/bluetooth/dbus/bluetooth_device_client.h
|
| index 4069ae9ed3727e013a9739d8be135cfd9219a04a..81947b6fdce62aa7abb7f1f5a84288b600278bcf 100644
|
| --- a/device/bluetooth/dbus/bluetooth_device_client.h
|
| +++ b/device/bluetooth/dbus/bluetooth_device_client.h
|
| @@ -109,6 +109,11 @@ class DEVICE_BLUETOOTH_EXPORT BluetoothDeviceClient : public BluezDBusClient {
|
| // discovered during inquiry. Read-only.
|
| dbus::Property<int16_t> rssi;
|
|
|
| + // Manufacturer specific advertisement data. Keys are 16 bits Manufacturer
|
| + // ID followed by its byte array value. Read-only.
|
| + dbus::Property<std::unordered_map<uint16_t, std::vector<uint8_t>>>
|
| + manufacturer_data;
|
| +
|
| // Service advertisement data. Keys are the UUIDs in string format followed
|
| // by its byte array value. Read-only.
|
| dbus::Property<std::unordered_map<std::string, std::vector<uint8_t>>>
|
| @@ -117,6 +122,9 @@ class DEVICE_BLUETOOTH_EXPORT BluetoothDeviceClient : public BluezDBusClient {
|
| // Indicate whether or not service discovery has been resolved. Read-only.
|
| dbus::Property<bool> services_resolved;
|
|
|
| + // Bluetooth Flag in Advertise data. Read-only.
|
| + dbus::Property<uint8_t> flags;
|
| +
|
| Properties(dbus::ObjectProxy* object_proxy,
|
| const std::string& interface_name,
|
| const PropertyChangedCallback& callback);
|
|
|