diff options
Diffstat (limited to 'components/plugins/renderer/mobile_youtube_plugin.cc')
-rw-r--r-- | components/plugins/renderer/mobile_youtube_plugin.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/plugins/renderer/mobile_youtube_plugin.cc b/components/plugins/renderer/mobile_youtube_plugin.cc index 4664db7..6db102a 100644 --- a/components/plugins/renderer/mobile_youtube_plugin.cc +++ b/components/plugins/renderer/mobile_youtube_plugin.cc @@ -94,7 +94,8 @@ bool MobileYouTubePlugin::IsYouTubeURL(const GURL& url, EndsWith(host, "youtube-nocookie.com", true); return is_youtube && IsValidYouTubeVideo(url.path()) && - LowerCaseEqualsASCII(mime_type, content::kFlashPluginSwfMimeType); + base::LowerCaseEqualsASCII(mime_type, + content::kFlashPluginSwfMimeType); } void MobileYouTubePlugin::OpenYoutubeUrlCallback() { |