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

Unified Diff: device/bluetooth/bluez/bluetooth_adapter_bluez.cc

Issue 2421713002: arc: bluetooth: Expose missing advertise data. (Closed)
Patch Set: Created 4 years, 2 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/bluez/bluetooth_adapter_bluez.cc
diff --git a/device/bluetooth/bluez/bluetooth_adapter_bluez.cc b/device/bluetooth/bluez/bluetooth_adapter_bluez.cc
index ad4510ac08d7c446f9bcc12d19139965ffb4c232..67e9fed30be91c06a2984ab621217c3e2b5408e3 100644
--- a/device/bluetooth/bluez/bluetooth_adapter_bluez.cc
+++ b/device/bluetooth/bluez/bluetooth_adapter_bluez.cc
@@ -603,7 +603,9 @@ void BluetoothAdapterBlueZ::DevicePropertyChanged(
property_name == properties->uuids.name() ||
property_name == properties->rssi.name() ||
property_name == properties->tx_power.name() ||
- property_name == properties->service_data.name()) {
+ property_name == properties->service_data.name() ||
+ property_name == properties->manufacturer_data.name() ||
ortuno 2016/10/14 00:15:10 Add these to the DeviceChanged docs.
puthik_chromium 2016/10/17 23:30:32 I can't find the DeviceChanged docs that mention e
ortuno 2016/10/18 01:41:18 https://cs.chromium.org/chromium/src/device/blueto
puthik_chromium 2016/11/02 23:20:37 Done.
+ property_name == properties->flags.name()) {
NotifyDeviceChanged(device_bluez);
}

Powered by Google App Engine
This is Rietveld 408576698