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

Unified Diff: device/bluetooth/test/bluetooth_test.cc

Issue 1973703002: Implement //device/bt changes for notifications. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@notifications_dbus
Patch Set: Created 4 years, 7 months 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/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();

Powered by Google App Engine
This is Rietveld 408576698