Index: device/bluetooth/test/mock_bluetooth_gatt_descriptor.cc |
diff --git a/device/bluetooth/test/mock_bluetooth_gatt_descriptor.cc b/device/bluetooth/test/mock_bluetooth_gatt_descriptor.cc |
index e0d14241a8cee1515381148cf277f9bf556bfea8..bbe55f0a28a6d344296c543c5afff5219168c263 100644 |
--- a/device/bluetooth/test/mock_bluetooth_gatt_descriptor.cc |
+++ b/device/bluetooth/test/mock_bluetooth_gatt_descriptor.cc |
@@ -21,7 +21,7 @@ MockBluetoothGattDescriptor::MockBluetoothGattDescriptor( |
ON_CALL(*this, GetUUID()).WillByDefault(Return(uuid)); |
ON_CALL(*this, IsLocal()).WillByDefault(Return(is_local)); |
ON_CALL(*this, GetValue()) |
- .WillByDefault(ReturnRefOfCopy(std::vector<uint8>())); |
+ .WillByDefault(ReturnRefOfCopy(std::vector<uint8_t>())); |
ON_CALL(*this, GetCharacteristic()).WillByDefault(Return(characteristic)); |
ON_CALL(*this, GetPermissions()).WillByDefault(Return(permissions)); |
} |