summaryrefslogtreecommitdiffstats
path: root/device
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-03 22:05:28 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-03 22:05:28 +0000
commit466c986d6754aa9fb92edc781cd3eade36c41ed1 (patch)
tree330365d2d56ee88037e53840fe47f106fd568c49 /device
parentf8ddd9000a2e654d930805b01dcbb9d9bfb90e88 (diff)
downloadchromium_src-466c986d6754aa9fb92edc781cd3eade36c41ed1.zip
chromium_src-466c986d6754aa9fb92edc781cd3eade36c41ed1.tar.gz
chromium_src-466c986d6754aa9fb92edc781cd3eade36c41ed1.tar.bz2
Move RemoveChars, ReplaceChars, TrimString, and TruncateUTF8ToByteSize to base namespace.
BUG= R=viettrungluu@chromium.org Review URL: https://codereview.chromium.org/102843002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@238465 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'device')
-rw-r--r--device/bluetooth/bluetooth_profile_chromeos.cc2
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);