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

Unified Diff: chrome/browser/profile_resetter/resettable_settings_snapshot.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: chrome/browser/profile_resetter/resettable_settings_snapshot.cc
diff --git a/chrome/browser/profile_resetter/resettable_settings_snapshot.cc b/chrome/browser/profile_resetter/resettable_settings_snapshot.cc
index 895d5ae93abe235ba45d90b8eb2b13356ef74338..64df1d5486acc723f79f5e1ed1e3960671828b13 100644
--- a/chrome/browser/profile_resetter/resettable_settings_snapshot.cc
+++ b/chrome/browser/profile_resetter/resettable_settings_snapshot.cc
@@ -138,7 +138,7 @@ std::string SerializeSettingsReport(const ResettableSettingsSnapshot& snapshot,
extensions.begin(); i != extensions.end(); ++i) {
// Replace "\"" to simplify server-side analysis.
std::string ext_name;
- ReplaceChars(i->second, "\"", "\'", &ext_name);
+ base::ReplaceChars(i->second, "\"", "\'", &ext_name);
list->AppendString(i->first + ";" + ext_name);
}
dict.Set(kEnabledExtensions, list);

Powered by Google App Engine
This is Rietveld 408576698