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

Unified Diff: device/bluetooth/dbus/fake_bluetooth_gatt_descriptor_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_descriptor_service_provider.cc
diff --git a/device/bluetooth/dbus/fake_bluetooth_gatt_descriptor_service_provider.cc b/device/bluetooth/dbus/fake_bluetooth_gatt_descriptor_service_provider.cc
index 4376ce982b134db4ff72e012b8312bdde3982230..78a504e92b52bdf63e447b639b2a17daec77724f 100644
--- a/device/bluetooth/dbus/fake_bluetooth_gatt_descriptor_service_provider.cc
+++ b/device/bluetooth/dbus/fake_bluetooth_gatt_descriptor_service_provider.cc
@@ -52,7 +52,7 @@ FakeBluetoothGattDescriptorServiceProvider::
}
void FakeBluetoothGattDescriptorServiceProvider::SendValueChanged(
- const std::vector<uint8>& value) {
+ const std::vector<uint8_t>& value) {
VLOG(1) << "Sent descriptor value changed: " << object_path_.value()
<< " UUID: " << uuid_;
}
@@ -88,7 +88,7 @@ void FakeBluetoothGattDescriptorServiceProvider::GetValue(
}
void FakeBluetoothGattDescriptorServiceProvider::SetValue(
- const std::vector<uint8>& value,
+ const std::vector<uint8_t>& value,
const base::Closure& callback,
const Delegate::ErrorCallback& error_callback) {
VLOG(1) << "GATT descriptor value Set request: " << object_path_.value()

Powered by Google App Engine
This is Rietveld 408576698