summaryrefslogtreecommitdiffstats
path: root/testing/android
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 /testing/android
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 'testing/android')
-rw-r--r--testing/android/native_test_util.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/android/native_test_util.cc b/testing/android/native_test_util.cc
index c814e6f..7d5f025 100644
--- a/testing/android/native_test_util.cc
+++ b/testing/android/native_test_util.cc
@@ -17,7 +17,7 @@ void ParseArgsFromString(const std::string& command_line,
tokenizer.set_quote_chars("\"");
while (tokenizer.GetNext()) {
std::string token;
- RemoveChars(tokenizer.token(), "\"", &token);
+ base::RemoveChars(tokenizer.token(), "\"", &token);
args->push_back(token);
}
}