| Index: device/bluetooth/bluez/bluetooth_local_gatt_characteristic_bluez.h
|
| diff --git a/device/bluetooth/bluez/bluetooth_local_gatt_characteristic_bluez.h b/device/bluetooth/bluez/bluetooth_local_gatt_characteristic_bluez.h
|
| index 2d29a5a9b9b2ee21ad15e44228d7c5dd97edd9c8..1f71d6d01183440612d2b88a815f61466b434a0a 100644
|
| --- a/device/bluetooth/bluez/bluetooth_local_gatt_characteristic_bluez.h
|
| +++ b/device/bluetooth/bluez/bluetooth_local_gatt_characteristic_bluez.h
|
| @@ -5,12 +5,13 @@
|
| #ifndef DEVICE_BLUETOOTH_BLUEZ_BLUETOOTH_LOCAL_GATT_CHARACTERISTIC_BLUEZ_H_
|
| #define DEVICE_BLUETOOTH_BLUEZ_BLUETOOTH_LOCAL_GATT_CHARACTERISTIC_BLUEZ_H_
|
|
|
| +#include <cstdint>
|
| #include <vector>
|
|
|
| #include "base/macros.h"
|
| #include "base/memory/weak_ptr.h"
|
| +#include "device/bluetooth/bluetooth_gatt_characteristic.h"
|
| #include "device/bluetooth/bluetooth_local_gatt_characteristic.h"
|
| -#include "device/bluetooth/bluetooth_local_gatt_service.h"
|
| #include "device/bluetooth/bluetooth_uuid.h"
|
| #include "device/bluetooth/bluez/bluetooth_gatt_characteristic_bluez.h"
|
| #include "device/bluetooth/bluez/bluetooth_local_gatt_descriptor_bluez.h"
|
| @@ -32,11 +33,15 @@ class BluetoothLocalGattCharacteristicBlueZ
|
| BluetoothLocalGattServiceBlueZ* service);
|
| ~BluetoothLocalGattCharacteristicBlueZ() override;
|
|
|
| - // device::BluetoothLocalGattCharacteristic overrides.
|
| + // device::BluetoothGattCharacteristic overrides:
|
| device::BluetoothUUID GetUUID() const override;
|
| Properties GetProperties() const override;
|
| Permissions GetPermissions() const override;
|
|
|
| + // device::BluetoothLocalGattCharacteristic overrides:
|
| + NotificationStatus NotifyValueChanged(const std::vector<uint8_t>& new_value,
|
| + bool indicate) override;
|
| +
|
| BluetoothLocalGattServiceBlueZ* GetService();
|
|
|
| const std::vector<std::unique_ptr<BluetoothLocalGattDescriptorBlueZ>>&
|
|
|