Index: device/bluetooth/dbus/fake_bluetooth_gatt_descriptor_service_provider.h |
diff --git a/device/bluetooth/dbus/fake_bluetooth_gatt_descriptor_service_provider.h b/device/bluetooth/dbus/fake_bluetooth_gatt_descriptor_service_provider.h |
index 7640acc5511bca8f897e3ba561b0d7c562aba46f..ee82bcd4f783d1f58d93b110b57379e4e9eef996 100644 |
--- a/device/bluetooth/dbus/fake_bluetooth_gatt_descriptor_service_provider.h |
+++ b/device/bluetooth/dbus/fake_bluetooth_gatt_descriptor_service_provider.h |
@@ -5,6 +5,8 @@ |
#ifndef DEVICE_BLUETOOTH_DBUS_FAKE_BLUETOOTH_GATT_DESCRIPTOR_SERVICE_PROVIDER_H_ |
#define DEVICE_BLUETOOTH_DBUS_FAKE_BLUETOOTH_GATT_DESCRIPTOR_SERVICE_PROVIDER_H_ |
+#include <stdint.h> |
+ |
#include <string> |
#include <vector> |
@@ -30,14 +32,14 @@ class DEVICE_BLUETOOTH_EXPORT FakeBluetoothGattDescriptorServiceProvider |
~FakeBluetoothGattDescriptorServiceProvider() override; |
// BluetoothGattDescriptorServiceProvider override. |
- void SendValueChanged(const std::vector<uint8>& value) override; |
+ void SendValueChanged(const std::vector<uint8_t>& value) override; |
// Methods to simulate value get/set requests issued from a remote device. The |
// methods do nothing, if the associated service was not registered with the |
// GATT manager. |
void GetValue(const Delegate::ValueCallback& callback, |
const Delegate::ErrorCallback& error_callback); |
- void SetValue(const std::vector<uint8>& value, |
+ void SetValue(const std::vector<uint8_t>& value, |
const base::Closure& callback, |
const Delegate::ErrorCallback& error_callback); |