| Index: device/bluetooth/bluetooth_adapter.h
|
| diff --git a/device/bluetooth/bluetooth_adapter.h b/device/bluetooth/bluetooth_adapter.h
|
| index 71b44b9942134e24beb34aca4016f363fed4db56..e06b8bf2287651fc89cc248e3d8a2ec0deeed825 100644
|
| --- a/device/bluetooth/bluetooth_adapter.h
|
| +++ b/device/bluetooth/bluetooth_adapter.h
|
| @@ -5,6 +5,8 @@
|
| #ifndef DEVICE_BLUETOOTH_BLUETOOTH_ADAPTER_H_
|
| #define DEVICE_BLUETOOTH_BLUETOOTH_ADAPTER_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <list>
|
| #include <set>
|
| #include <string>
|
| @@ -14,6 +16,7 @@
|
| #include "base/containers/scoped_ptr_hash_map.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/weak_ptr.h"
|
| +#include "build/build_config.h"
|
| #include "device/bluetooth/bluetooth_advertisement.h"
|
| #include "device/bluetooth/bluetooth_audio_sink.h"
|
| #include "device/bluetooth/bluetooth_device.h"
|
| @@ -168,12 +171,13 @@ class DEVICE_BLUETOOTH_EXPORT BluetoothAdapter
|
| virtual void GattCharacteristicValueChanged(
|
| BluetoothAdapter* adapter,
|
| BluetoothGattCharacteristic* characteristic,
|
| - const std::vector<uint8>& value) {}
|
| + const std::vector<uint8_t>& value) {}
|
|
|
| // Called when the value of a characteristic descriptor has been updated.
|
| virtual void GattDescriptorValueChanged(BluetoothAdapter* adapter,
|
| BluetoothGattDescriptor* descriptor,
|
| - const std::vector<uint8>& value) {}
|
| + const std::vector<uint8_t>& value) {
|
| + }
|
| };
|
|
|
| // Used to configure a listening servie.
|
|
|