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

Unified Diff: base/command_line.cc

Issue 448853002: Move StringToLowerASCII to 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
« no previous file with comments | « ash/system/chromeos/network/network_connect.cc ('k') | base/environment.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/command_line.cc
diff --git a/base/command_line.cc b/base/command_line.cc
index 6e37d6bf72b974c8909fc80b18dd793ac3931ef3..ca4af9754cb07a22268992bee0a79f79ad313fc4 100644
--- a/base/command_line.cc
+++ b/base/command_line.cc
@@ -96,7 +96,7 @@ void AppendSwitchesAndArguments(CommandLine& command_line,
// Lowercase switches for backwards compatiblity *on Windows*.
std::string LowerASCIIOnWindows(const std::string& string) {
#if defined(OS_WIN)
- return StringToLowerASCII(string);
+ return base::StringToLowerASCII(string);
#elif defined(OS_POSIX)
return string;
#endif
« no previous file with comments | « ash/system/chromeos/network/network_connect.cc ('k') | base/environment.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698