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

Unified Diff: device/bluetooth/dbus/fake_bluetooth_gatt_characteristic_service_provider.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/dbus/fake_bluetooth_gatt_characteristic_service_provider.cc
diff --git a/device/bluetooth/dbus/fake_bluetooth_gatt_characteristic_service_provider.cc b/device/bluetooth/dbus/fake_bluetooth_gatt_characteristic_service_provider.cc
index 03f06d03cb61a2c26268d78dac890d1c4e824331..4e60936116640cd75356427cbc00cc3244769bf9 100644
--- a/device/bluetooth/dbus/fake_bluetooth_gatt_characteristic_service_provider.cc
+++ b/device/bluetooth/dbus/fake_bluetooth_gatt_characteristic_service_provider.cc
@@ -54,7 +54,7 @@ FakeBluetoothGattCharacteristicServiceProvider::
}
void FakeBluetoothGattCharacteristicServiceProvider::SendValueChanged(
- const std::vector<uint8>& value) {
+ const std::vector<uint8_t>& value) {
VLOG(1) << "Sent characteristic value changed: " << object_path_.value()
<< " UUID: " << uuid_;
}
@@ -81,7 +81,7 @@ void FakeBluetoothGattCharacteristicServiceProvider::GetValue(
}
void FakeBluetoothGattCharacteristicServiceProvider::SetValue(
- const std::vector<uint8>& value,
+ const std::vector<uint8_t>& value,
const base::Closure& callback,
const Delegate::ErrorCallback& error_callback) {
VLOG(1) << "GATT characteristic value Set request: " << object_path_.value()

Powered by Google App Engine
This is Rietveld 408576698