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

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

Issue 2369423003: bluetooth: Expose service data from BlueZ (Closed)
Patch Set: Change scope to not cover just dbus property Created 4 years, 3 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_device_client.cc
diff --git a/device/bluetooth/dbus/bluetooth_device_client.cc b/device/bluetooth/dbus/bluetooth_device_client.cc
index cfc7e30c124e041842b7d10ad870acffc224fecf..92ae07a6c0010e588fd68fa42a18da7b8b61a632 100644
--- a/device/bluetooth/dbus/bluetooth_device_client.cc
+++ b/device/bluetooth/dbus/bluetooth_device_client.cc
@@ -4,6 +4,9 @@
#include "device/bluetooth/dbus/bluetooth_device_client.h"
+#include <memory>
+#include <utility>
+
#include "base/bind.h"
#include "base/logging.h"
#include "base/macros.h"
@@ -201,6 +204,7 @@ BluetoothDeviceClient::Properties::Properties(
RegisterProperty(bluetooth_device::kTxPowerProperty, &tx_power);
RegisterProperty(bluetooth_device::kServicesResolvedProperty,
&services_resolved);
+ RegisterProperty(bluetooth_device::kServiceDataProperty, &service_data);
}
BluetoothDeviceClient::Properties::~Properties() {}

Powered by Google App Engine
This is Rietveld 408576698