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

Unified Diff: testing/android/native_test_util.cc

Issue 102843002: Move RemoveChars, ReplaceChars, TrimString, and TruncateUTF8ToByteSize to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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
Index: testing/android/native_test_util.cc
diff --git a/testing/android/native_test_util.cc b/testing/android/native_test_util.cc
index c814e6f20ec18a367b59fa89be69b03ed46bfcb8..7d5f02539738da400fe578ef006494f824a02bf0 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);
}
}

Powered by Google App Engine
This is Rietveld 408576698