Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(435)

Unified Diff: device/bluetooth/test/mock_bluetooth_gatt_descriptor.cc

Issue 1542163002: Switch to standard integer types in device/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: win Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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));
}
« no previous file with comments | « device/bluetooth/test/mock_bluetooth_gatt_descriptor.h ('k') | device/bluetooth/test/mock_bluetooth_gatt_notify_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698