diff options
Diffstat (limited to 'device/bluetooth/bluetooth_profile_chromeos.cc')
-rw-r--r-- | device/bluetooth/bluetooth_profile_chromeos.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/device/bluetooth/bluetooth_profile_chromeos.cc b/device/bluetooth/bluetooth_profile_chromeos.cc index ba6bd5c..31e165e8d 100644 --- a/device/bluetooth/bluetooth_profile_chromeos.cc +++ b/device/bluetooth/bluetooth_profile_chromeos.cc @@ -90,7 +90,7 @@ void BluetoothProfileChromeOS::Init( // The object path is relatively meaningless, but has to be unique, so we // use the UUID of the profile. std::string uuid_path; - ReplaceChars(uuid, ":-", "_", &uuid_path); + base::ReplaceChars(uuid, ":-", "_", &uuid_path); object_path_ = dbus::ObjectPath("/org/chromium/bluetooth_profile/" + uuid_path); |