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_) { |