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

Unified Diff: chrome/browser/auto_launch_trial.cc

Issue 448143008: Move StringToUpperASCII and LowerCaseEqualsASCII to the base namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 months 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/auto_launch_trial.cc
diff --git a/chrome/browser/auto_launch_trial.cc b/chrome/browser/auto_launch_trial.cc
index ae53d7be1a7e4a14d158683350bee97e70e8ae7e..a235de7329ed17a717cb0ad4b74cbded01c0bced 100644
--- a/chrome/browser/auto_launch_trial.cc
+++ b/chrome/browser/auto_launch_trial.cc
@@ -24,11 +24,11 @@ bool IsInAutoLaunchGroup() {
}
bool IsInExperimentGroup(const std::string& brand_code) {
- return LowerCaseEqualsASCII(brand_code, "rngp");
+ return base::LowerCaseEqualsASCII(brand_code, "rngp");
}
bool IsInControlGroup(const std::string& brand_code) {
- return LowerCaseEqualsASCII(brand_code, "rngq");
+ return base::LowerCaseEqualsASCII(brand_code, "rngq");
}
} // namespace auto_launch_trial

Powered by Google App Engine
This is Rietveld 408576698