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

Unified Diff: device/bluetooth/dbus/bluetooth_gatt_characteristic_service_provider_impl.cc

Issue 2039773005: Add support in Chrome to send notifications to a specific device. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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/dbus/bluetooth_gatt_characteristic_service_provider_impl.cc
diff --git a/device/bluetooth/dbus/bluetooth_gatt_characteristic_service_provider_impl.cc b/device/bluetooth/dbus/bluetooth_gatt_characteristic_service_provider_impl.cc
index 51e382006047768bca789981f58dd89e643a2d75..19f7c042c72b92a61f85f504068445c8652ff583 100644
--- a/device/bluetooth/dbus/bluetooth_gatt_characteristic_service_provider_impl.cc
+++ b/device/bluetooth/dbus/bluetooth_gatt_characteristic_service_provider_impl.cc
@@ -113,7 +113,9 @@ BluetoothGattCharacteristicServiceProviderImpl::
}
void BluetoothGattCharacteristicServiceProviderImpl::SendValueChanged(
- const std::vector<uint8_t>& value) {
+ const dbus::ObjectPath& /* device_path */,
+ const std::vector<uint8_t>& value,
+ bool /* indicate */) {
// Running a test, don't actually try to write to use DBus.
if (!bus_)
return;

Powered by Google App Engine
This is Rietveld 408576698