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

Unified Diff: ui/gl/gl_version_info.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 | « ui/gfx/render_text_unittest.cc ('k') | webkit/common/database/database_identifier.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gl/gl_version_info.cc
diff --git a/ui/gl/gl_version_info.cc b/ui/gl/gl_version_info.cc
index 996c44f22cf4fd8c9c5b85c5abb3dd5574adb757..0d052b58dc62a62766a903b7be1d4653f9190fe0 100644
--- a/ui/gl/gl_version_info.cc
+++ b/ui/gl/gl_version_info.cc
@@ -19,7 +19,7 @@ GLVersionInfo::GLVersionInfo(const char* version_str, const char* renderer_str)
is_gl4(false),
is_angle(false) {
if (version_str) {
- std::string lstr(StringToLowerASCII(std::string(version_str)));
+ std::string lstr(base::StringToLowerASCII(std::string(version_str)));
is_es = (lstr.substr(0, 9) == "opengl es");
if (is_es) {
is_es1 = (lstr.substr(9, 2) == "-c" && lstr.substr(13, 2) == "1.");
« no previous file with comments | « ui/gfx/render_text_unittest.cc ('k') | webkit/common/database/database_identifier.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698