| Index: device/bluetooth/test/bluetooth_test.cc
|
| diff --git a/device/bluetooth/test/bluetooth_test.cc b/device/bluetooth/test/bluetooth_test.cc
|
| index 37c2a31084eb43ddf10b3f66c2415dbd6bbfa64f..53335ee092677e5f1f34ea6f2adc772825cc3177 100644
|
| --- a/device/bluetooth/test/bluetooth_test.cc
|
| +++ b/device/bluetooth/test/bluetooth_test.cc
|
| @@ -68,6 +68,22 @@ BluetoothDevice* BluetoothTestBase::DiscoverLowEnergyDevice(
|
| return nullptr;
|
| }
|
|
|
| +bool BluetoothTestBase::SimulateLocalGattCharacteristicNotificationsRequest(
|
| + BluetoothLocalGattService* service,
|
| + BluetoothLocalGattCharacteristic* characteristic,
|
| + bool start) {
|
| + NOTIMPLEMENTED();
|
| + return false;
|
| +}
|
| +
|
| +bool BluetoothTestBase::SimulateLocalGattCharacteristicSendValueUpdate(
|
| + BluetoothLocalGattService* service,
|
| + BluetoothLocalGattCharacteristic* characteristic,
|
| + const std::vector<uint8_t>& new_value) {
|
| + NOTIMPLEMENTED();
|
| + return false;
|
| +}
|
| +
|
| std::vector<BluetoothLocalGattService*>
|
| BluetoothTestBase::RegisteredGattServices() {
|
| NOTIMPLEMENTED();
|
|
|