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

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

Issue 1947173002: Update //device/bluetooth/dbus code to match cros_system_api constants. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/bluetooth/dbus/bluetooth_gatt_manager_client.cc
diff --git a/device/bluetooth/dbus/bluetooth_gatt_manager_client.cc b/device/bluetooth/dbus/bluetooth_gatt_manager_client.cc
index 815c94ffa900f2fdcc5420906e873c91b57686aa..8f3719572d34b502cfa83d2c827b06ed54c72953 100644
--- a/device/bluetooth/dbus/bluetooth_gatt_manager_client.cc
+++ b/device/bluetooth/dbus/bluetooth_gatt_manager_client.cc
@@ -35,7 +35,7 @@ class BluetoothGattManagerClientImpl : public BluetoothGattManagerClient {
const ErrorCallback& error_callback) override {
dbus::MethodCall method_call(
bluetooth_gatt_manager::kBluetoothGattManagerInterface,
- bluetooth_gatt_manager::kRegisterService);
+ bluetooth_gatt_manager::kRegisterApplication);
dbus::MessageWriter writer(&method_call);
writer.AppendObjectPath(application_path);
@@ -66,7 +66,7 @@ class BluetoothGattManagerClientImpl : public BluetoothGattManagerClient {
const ErrorCallback& error_callback) override {
dbus::MethodCall method_call(
bluetooth_gatt_manager::kBluetoothGattManagerInterface,
- bluetooth_gatt_manager::kUnregisterService);
+ bluetooth_gatt_manager::kUnregisterApplication);
dbus::MessageWriter writer(&method_call);
writer.AppendObjectPath(application_path);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698