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

Unified Diff: components/plugins/renderer/mobile_youtube_plugin.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 | « components/os_crypt/ie7_password_win.cc ('k') | components/policy/core/common/preg_parser_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/plugins/renderer/mobile_youtube_plugin.cc
diff --git a/components/plugins/renderer/mobile_youtube_plugin.cc b/components/plugins/renderer/mobile_youtube_plugin.cc
index caeb5b34d061ac51f178c2a064305161f88130d4..7ed4540ea14e954ff02a76693684ef27e91ac301 100644
--- a/components/plugins/renderer/mobile_youtube_plugin.cc
+++ b/components/plugins/renderer/mobile_youtube_plugin.cc
@@ -51,7 +51,7 @@ bool IsValidYouTubeVideo(const std::string& path) {
if (path.length() <= len)
return false;
- std::string str = StringToLowerASCII(path);
+ std::string str = base::StringToLowerASCII(path);
// Youtube flash url can start with /v/ or /e/.
if (strncmp(str.data(), kSlashVSlash, len) != 0 &&
strncmp(str.data(), kSlashESlash, len) != 0)
« no previous file with comments | « components/os_crypt/ie7_password_win.cc ('k') | components/policy/core/common/preg_parser_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698