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

Unified Diff: net/tools/gdig/gdig.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: net/tools/gdig/gdig.cc
diff --git a/net/tools/gdig/gdig.cc b/net/tools/gdig/gdig.cc
index 54f05091c014a46b5e1919bec12e3e63fd4c6a1b..db0704c5a842c9659c1973f4aeadbd981fd30d47 100644
--- a/net/tools/gdig/gdig.cc
+++ b/net/tools/gdig/gdig.cc
@@ -126,7 +126,7 @@ bool LoadReplayLog(const base::FilePath& file_path, ReplayLog* replay_log) {
// smarter line splitter, but this particular use does not need to target
// efficiency.
std::string replay_log_contents;
- RemoveChars(original_replay_log_contents, "\r", &replay_log_contents);
+ base::RemoveChars(original_replay_log_contents, "\r", &replay_log_contents);
std::vector<std::string> lines;
base::SplitString(replay_log_contents, '\n', &lines);

Powered by Google App Engine
This is Rietveld 408576698