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

Unified Diff: device/bluetooth/bluetooth_remote_gatt_characteristic_android.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/bluetooth_remote_gatt_characteristic_android.cc
diff --git a/device/bluetooth/bluetooth_remote_gatt_characteristic_android.cc b/device/bluetooth/bluetooth_remote_gatt_characteristic_android.cc
index 58e4cacb0aa0a2d1c1eac8e70f815120bb2e5023..4c344127fa0f34c09d754497d2417cb98bfbaf2a 100644
--- a/device/bluetooth/bluetooth_remote_gatt_characteristic_android.cc
+++ b/device/bluetooth/bluetooth_remote_gatt_characteristic_android.cc
@@ -68,7 +68,7 @@ bool BluetoothRemoteGattCharacteristicAndroid::IsLocal() const {
return false;
}
-const std::vector<uint8>& BluetoothRemoteGattCharacteristicAndroid::GetValue()
+const std::vector<uint8_t>& BluetoothRemoteGattCharacteristicAndroid::GetValue()
const {
return value_;
}
@@ -116,7 +116,7 @@ bool BluetoothRemoteGattCharacteristicAndroid::AddDescriptor(
}
bool BluetoothRemoteGattCharacteristicAndroid::UpdateValue(
- const std::vector<uint8>& value) {
+ const std::vector<uint8_t>& value) {
NOTIMPLEMENTED();
return false;
}
@@ -165,7 +165,7 @@ void BluetoothRemoteGattCharacteristicAndroid::ReadRemoteCharacteristic(
}
void BluetoothRemoteGattCharacteristicAndroid::WriteRemoteCharacteristic(
- const std::vector<uint8>& new_value,
+ const std::vector<uint8_t>& new_value,
const base::Closure& callback,
const ErrorCallback& error_callback) {
if (read_pending_ || write_pending_) {

Powered by Google App Engine
This is Rietveld 408576698