| 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)
|
|
|