| 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 1213fc5c1d1846dc6dd3ec9d20f1fdce59137605..92d98bb96788d7c35765382fabec1f522bf8d863 100644
|
| --- a/device/bluetooth/dbus/bluetooth_gatt_manager_client.h
|
| +++ b/device/bluetooth/dbus/bluetooth_gatt_manager_client.h
|
| @@ -45,16 +45,19 @@ 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 RegisterApplication(const dbus::ObjectPath& application_path,
|
| + virtual void RegisterApplication(const dbus::ObjectPath& adapter_object_path,
|
| + 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 UnregisterApplication(const dbus::ObjectPath& application_path,
|
| - const base::Closure& callback,
|
| - const ErrorCallback& error_callback) = 0;
|
| + virtual void UnregisterApplication(
|
| + const dbus::ObjectPath& adapter_object_path,
|
| + const dbus::ObjectPath& application_path,
|
| + const base::Closure& callback,
|
| + const ErrorCallback& error_callback) = 0;
|
|
|
| // Creates the instance.
|
| static BluetoothGattManagerClient* Create();
|
|
|