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

Unified Diff: chromeos/dbus/dbus_client_bundle.h

Issue 1052363005: Add DBus bindings for BLE Advertisement. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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: chromeos/dbus/dbus_client_bundle.h
diff --git a/chromeos/dbus/dbus_client_bundle.h b/chromeos/dbus/dbus_client_bundle.h
index 2801b4f6b4e9f9a8a88b064d7939f0d8709273fb..56df81a6bc69c5876539d260d4800b3587dc28f7 100644
--- a/chromeos/dbus/dbus_client_bundle.h
+++ b/chromeos/dbus/dbus_client_bundle.h
@@ -16,6 +16,7 @@ class AmplifierClient;
class ApManagerClient;
class AudioDspClient;
class BluetoothAdapterClient;
+class BluetoothLEAdvertisingManagerClient;
Marie Janssen 2015/04/14 16:47:24 nit: move this into alpha order
rkc 2015/04/14 17:54:32 Done.
class BluetoothAgentManagerClient;
class BluetoothDeviceClient;
class BluetoothGattCharacteristicClient;
@@ -123,6 +124,11 @@ class CHROMEOS_EXPORT DBusClientBundle {
return bluetooth_adapter_client_.get();
}
+ BluetoothLEAdvertisingManagerClient*
+ bluetooth_advertisement_manager_client() {
+ return bluetooth_advertisement_manager_client_.get();
+ }
+
BluetoothAgentManagerClient* bluetooth_agent_manager_client() {
return bluetooth_agent_manager_client_.get();
}
@@ -296,6 +302,8 @@ class CHROMEOS_EXPORT DBusClientBundle {
scoped_ptr<ApManagerClient> ap_manager_client_;
scoped_ptr<AudioDspClient> audio_dsp_client_;
scoped_ptr<BluetoothAdapterClient> bluetooth_adapter_client_;
+ scoped_ptr<BluetoothLEAdvertisingManagerClient>
+ bluetooth_advertisement_manager_client_;
scoped_ptr<BluetoothAgentManagerClient> bluetooth_agent_manager_client_;
scoped_ptr<BluetoothDeviceClient> bluetooth_device_client_;
scoped_ptr<BluetoothGattCharacteristicClient>

Powered by Google App Engine
This is Rietveld 408576698