| Index: device/bluetooth/test/bluetooth_test_android.cc
|
| diff --git a/device/bluetooth/test/bluetooth_test_android.cc b/device/bluetooth/test/bluetooth_test_android.cc
|
| index d822a7c41fc4e7a7fccfd7c0175f1eb7de74afa4..26f5f29acd03ba78535b841a286488d2905a5996 100644
|
| --- a/device/bluetooth/test/bluetooth_test_android.cc
|
| +++ b/device/bluetooth/test/bluetooth_test_android.cc
|
| @@ -194,7 +194,7 @@ void BluetoothTestAndroid::
|
|
|
| void BluetoothTestAndroid::SimulateGattCharacteristicRead(
|
| BluetoothGattCharacteristic* characteristic,
|
| - const std::vector<uint8>& value) {
|
| + const std::vector<uint8_t>& value) {
|
| BluetoothRemoteGattCharacteristicAndroid* characteristic_android =
|
| static_cast<BluetoothRemoteGattCharacteristicAndroid*>(characteristic);
|
| JNIEnv* env = base::android::AttachCurrentThread();
|
| @@ -213,7 +213,7 @@ void BluetoothTestAndroid::SimulateGattCharacteristicReadError(
|
| BluetoothRemoteGattCharacteristicAndroid* characteristic_android =
|
| static_cast<BluetoothRemoteGattCharacteristicAndroid*>(characteristic);
|
| JNIEnv* env = base::android::AttachCurrentThread();
|
| - std::vector<uint8> empty_value;
|
| + std::vector<uint8_t> empty_value;
|
|
|
| Java_FakeBluetoothGattCharacteristic_valueRead(
|
| env, characteristic_android->GetJavaObject().obj(),
|
|
|