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

Unified Diff: device/bluetooth/dbus/bluetooth_gatt_manager_client.h

Issue 1920693002: Complete //device/bt implementation for hosting local GATT attributes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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: device/bluetooth/dbus/bluetooth_gatt_manager_client.h
diff --git a/device/bluetooth/dbus/bluetooth_gatt_manager_client.h b/device/bluetooth/dbus/bluetooth_gatt_manager_client.h
index b735f773ff3974312c02933c06f3714a71c5705e..1213fc5c1d1846dc6dd3ec9d20f1fdce59137605 100644
--- a/device/bluetooth/dbus/bluetooth_gatt_manager_client.h
+++ b/device/bluetooth/dbus/bluetooth_gatt_manager_client.h
@@ -45,16 +45,16 @@ class DEVICE_BLUETOOTH_EXPORT BluetoothGattManagerClient
// using D-Bus Object Manager. Hence, the object paths and the interfaces in
// the registered hierarchy must comply with the BlueZ GATT D-Bus
// specification.
- virtual void RegisterService(const dbus::ObjectPath& service_path,
- const Options& options,
- const base::Closure& callback,
- const ErrorCallback& error_callback) = 0;
+ virtual void RegisterApplication(const dbus::ObjectPath& application_path,
+ const Options& options,
+ const base::Closure& callback,
+ const ErrorCallback& error_callback) = 0;
// Unregisters the GATT service with the D-Bus object path |service_path| from
// the remote GATT manager.
- virtual void UnregisterService(const dbus::ObjectPath& service_path,
- const base::Closure& callback,
- const ErrorCallback& error_callback) = 0;
+ virtual void UnregisterApplication(const dbus::ObjectPath& application_path,
+ const base::Closure& callback,
+ const ErrorCallback& error_callback) = 0;
// Creates the instance.
static BluetoothGattManagerClient* Create();

Powered by Google App Engine
This is Rietveld 408576698