summaryrefslogtreecommitdiffstats
path: root/chromeos/dbus/experimental_bluetooth_input_client.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromeos/dbus/experimental_bluetooth_input_client.cc')
-rw-r--r--chromeos/dbus/experimental_bluetooth_input_client.cc11
1 files changed, 6 insertions, 5 deletions
diff --git a/chromeos/dbus/experimental_bluetooth_input_client.cc b/chromeos/dbus/experimental_bluetooth_input_client.cc
index aee73c3..ccbc896 100644
--- a/chromeos/dbus/experimental_bluetooth_input_client.cc
+++ b/chromeos/dbus/experimental_bluetooth_input_client.cc
@@ -39,15 +39,16 @@ class ExperimentalBluetoothInputClientImpl
: bus_(bus),
weak_ptr_factory_(this) {
object_manager_ = bus_->GetObjectManager(
- bluetooth_manager::kBluetoothManagerServiceName,
- dbus::ObjectPath(bluetooth_manager::kBluetoothManagerServicePath));
+ bluetooth_object_manager::kBluetoothObjectManagerServiceName,
+ dbus::ObjectPath(
+ bluetooth_object_manager::kBluetoothObjectManagerServicePath));
object_manager_->RegisterInterface(
- bluetooth_input::kExperimentalBluetoothInputInterface, this);
+ bluetooth_input::kBluetoothInputInterface, this);
}
virtual ~ExperimentalBluetoothInputClientImpl() {
object_manager_->UnregisterInterface(
- bluetooth_input::kExperimentalBluetoothInputInterface);
+ bluetooth_input::kBluetoothInputInterface);
}
// ExperimentalBluetoothInputClient override.
@@ -84,7 +85,7 @@ class ExperimentalBluetoothInputClientImpl
return static_cast<Properties*>(
object_manager_->GetProperties(
object_path,
- bluetooth_input::kExperimentalBluetoothInputInterface));
+ bluetooth_input::kBluetoothInputInterface));
}
private: