Index: device/bluetooth/test/test_bluetooth_adapter_observer.cc |
diff --git a/device/bluetooth/test/test_bluetooth_adapter_observer.cc b/device/bluetooth/test/test_bluetooth_adapter_observer.cc |
index 5d2056551e1abb90c01e46f984d382f7bcb7c157..eac1d9b04816355cd8ecd50fe29a61a051bcc869 100644 |
--- a/device/bluetooth/test/test_bluetooth_adapter_observer.cc |
+++ b/device/bluetooth/test/test_bluetooth_adapter_observer.cc |
@@ -277,7 +277,7 @@ void TestBluetoothAdapterObserver::GattDescriptorRemoved( |
void TestBluetoothAdapterObserver::GattCharacteristicValueChanged( |
BluetoothAdapter* adapter, |
BluetoothGattCharacteristic* characteristic, |
- const std::vector<uint8>& value) { |
+ const std::vector<uint8_t>& value) { |
ASSERT_EQ(adapter_.get(), adapter); |
++gatt_characteristic_value_changed_count_; |
@@ -296,7 +296,7 @@ void TestBluetoothAdapterObserver::GattCharacteristicValueChanged( |
void TestBluetoothAdapterObserver::GattDescriptorValueChanged( |
BluetoothAdapter* adapter, |
BluetoothGattDescriptor* descriptor, |
- const std::vector<uint8>& value) { |
+ const std::vector<uint8_t>& value) { |
ASSERT_EQ(adapter_.get(), adapter); |
++gatt_descriptor_value_changed_count_; |