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

Side by Side Diff: components/plugins/renderer/mobile_youtube_plugin.cc

Issue 1126073003: Plugin Placeholders: Refactor for platforms that don't support plugins (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: The version that was reverted. Created 5 years, 6 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/plugins/renderer/mobile_youtube_plugin.h" 5 #include "components/plugins/renderer/mobile_youtube_plugin.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/bind_helpers.h" 8 #include "base/bind_helpers.h"
9 #include "base/strings/string_piece.h" 9 #include "base/strings/string_piece.h"
10 #include "base/strings/string_util.h" 10 #include "base/strings/string_util.h"
11 #include "base/values.h" 11 #include "base/values.h"
12 #include "content/public/common/content_constants.h" 12 #include "content/public/common/content_constants.h"
13 #include "content/public/renderer/render_frame.h" 13 #include "content/public/renderer/render_frame.h"
14 #include "gin/handle.h"
15 #include "gin/object_template_builder.h" 14 #include "gin/object_template_builder.h"
16 #include "third_party/WebKit/public/web/WebFrame.h" 15 #include "third_party/WebKit/public/web/WebFrame.h"
17 #include "third_party/WebKit/public/web/WebKit.h"
18 #include "ui/base/webui/jstemplate_builder.h" 16 #include "ui/base/webui/jstemplate_builder.h"
19 17
20 using blink::WebFrame; 18 using blink::WebFrame;
21 using blink::WebPlugin; 19 using blink::WebPlugin;
22 using blink::WebURLRequest; 20 using blink::WebURLRequest;
23 21
24 const char* const kSlashVSlash = "/v/"; 22 const char* const kSlashVSlash = "/v/";
25 const char* const kSlashESlash = "/e/"; 23 const char* const kSlashESlash = "/e/";
26 24
27 namespace { 25 namespace {
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 return true; 67 return true;
70 } 68 }
71 69
72 } // namespace 70 } // namespace
73 71
74 namespace plugins { 72 namespace plugins {
75 73
76 MobileYouTubePlugin::MobileYouTubePlugin(content::RenderFrame* render_frame, 74 MobileYouTubePlugin::MobileYouTubePlugin(content::RenderFrame* render_frame,
77 blink::WebLocalFrame* frame, 75 blink::WebLocalFrame* frame,
78 const blink::WebPluginParams& params, 76 const blink::WebPluginParams& params,
79 base::StringPiece& template_html, 77 base::StringPiece& template_html)
80 GURL placeholderDataUrl)
81 : PluginPlaceholder(render_frame, 78 : PluginPlaceholder(render_frame,
82 frame, 79 frame,
83 params, 80 params,
84 HtmlData(params, template_html), 81 HtmlData(params, template_html)) {
85 placeholderDataUrl) {} 82 }
86 83
87 MobileYouTubePlugin::~MobileYouTubePlugin() {} 84 MobileYouTubePlugin::~MobileYouTubePlugin() {}
88 85
89 // static 86 // static
90 bool MobileYouTubePlugin::IsYouTubeURL(const GURL& url, 87 bool MobileYouTubePlugin::IsYouTubeURL(const GURL& url,
91 const std::string& mime_type) { 88 const std::string& mime_type) {
92 std::string host = url.host(); 89 std::string host = url.host();
93 bool is_youtube = EndsWith(host, "youtube.com", true) || 90 bool is_youtube = EndsWith(host, "youtube.com", true) ||
94 EndsWith(host, "youtube-nocookie.com", true); 91 EndsWith(host, "youtube-nocookie.com", true);
95 92
96 return is_youtube && IsValidYouTubeVideo(url.path()) && 93 return is_youtube && IsValidYouTubeVideo(url.path()) &&
97 LowerCaseEqualsASCII(mime_type, content::kFlashPluginSwfMimeType); 94 LowerCaseEqualsASCII(mime_type, content::kFlashPluginSwfMimeType);
98 } 95 }
99 96
100 void MobileYouTubePlugin::OpenYoutubeUrlCallback() { 97 void MobileYouTubePlugin::OpenYoutubeUrlCallback() {
101 std::string youtube("vnd.youtube:"); 98 std::string youtube("vnd.youtube:");
102 GURL url(youtube.append(GetYoutubeVideoId(GetPluginParams()))); 99 GURL url(youtube.append(GetYoutubeVideoId(GetPluginParams())));
103 WebURLRequest request; 100 WebURLRequest request;
104 request.initialize(); 101 request.initialize();
105 request.setURL(url); 102 request.setURL(url);
106 render_frame()->LoadURLExternally( 103 render_frame()->LoadURLExternally(
107 GetFrame(), request, blink::WebNavigationPolicyNewForegroundTab); 104 GetFrame(), request, blink::WebNavigationPolicyNewForegroundTab);
108 } 105 }
109 106
110 void MobileYouTubePlugin::BindWebFrame(WebFrame* frame) {
111 v8::Isolate* isolate = blink::mainThreadIsolate();
112 v8::HandleScope handle_scope(isolate);
113 v8::Local<v8::Context> context = frame->mainWorldScriptContext();
114 DCHECK(!context.IsEmpty());
115
116 v8::Context::Scope context_scope(context);
117 v8::Local<v8::Object> global = context->Global();
118 global->Set(gin::StringToV8(isolate, "plugin"),
119 gin::CreateHandle(isolate, this).ToV8());
120 }
121
122 gin::ObjectTemplateBuilder MobileYouTubePlugin::GetObjectTemplateBuilder( 107 gin::ObjectTemplateBuilder MobileYouTubePlugin::GetObjectTemplateBuilder(
123 v8::Isolate* isolate) { 108 v8::Isolate* isolate) {
124 return PluginPlaceholder::GetObjectTemplateBuilder(isolate) 109 return PluginPlaceholder::GetObjectTemplateBuilder(isolate)
125 .SetMethod("openYoutubeURL", &MobileYouTubePlugin::OpenYoutubeUrlCallback); 110 .SetMethod("openYoutubeURL", &MobileYouTubePlugin::OpenYoutubeUrlCallback);
126 } 111 }
127 112
128 } // namespace plugins 113 } // namespace plugins
OLDNEW
« no previous file with comments | « components/plugins/renderer/mobile_youtube_plugin.h ('k') | components/plugins/renderer/plugin_placeholder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698