OLD | NEW |
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 #ifndef COMPONENTS_PLUGINS_RENDERER_PLUGIN_PLACEHOLDER_H_ | 5 #ifndef COMPONENTS_PLUGINS_RENDERER_PLUGIN_PLACEHOLDER_H_ |
6 #define COMPONENTS_PLUGINS_RENDERER_PLUGIN_PLACEHOLDER_H_ | 6 #define COMPONENTS_PLUGINS_RENDERER_PLUGIN_PLACEHOLDER_H_ |
7 | 7 |
8 #include "components/plugins/renderer/webview_plugin.h" | 8 #include "components/plugins/renderer/webview_plugin.h" |
9 #include "content/public/common/webplugininfo.h" | 9 #include "content/public/common/webplugininfo.h" |
10 #include "content/public/renderer/context_menu_client.h" | 10 #include "content/public/renderer/context_menu_client.h" |
11 #include "content/public/renderer/render_frame_observer.h" | 11 #include "content/public/renderer/render_frame_observer.h" |
12 #include "content/public/renderer/render_process_observer.h" | 12 #include "content/public/renderer/render_process_observer.h" |
| 13 #include "gin/wrappable.h" |
13 #include "third_party/WebKit/public/web/WebPluginParams.h" | 14 #include "third_party/WebKit/public/web/WebPluginParams.h" |
14 #include "webkit/renderer/cpp_bound_class.h" | |
15 | 15 |
16 namespace content { | 16 namespace content { |
17 struct WebPluginInfo; | 17 struct WebPluginInfo; |
18 } | 18 } |
19 | 19 |
| 20 namespace gin { |
| 21 class ObjectTemplateBuilder; |
| 22 } |
| 23 |
| 24 namespace v8 { |
| 25 class Isolate; |
| 26 } |
| 27 |
20 namespace plugins { | 28 namespace plugins { |
21 // Placeholders can be used if a plug-in is missing or not available | 29 // Placeholders can be used if a plug-in is missing or not available |
22 // (blocked or disabled). | 30 // (blocked or disabled). |
23 class PluginPlaceholder : public content::RenderFrameObserver, | 31 class PluginPlaceholder : public content::RenderFrameObserver, |
24 public webkit_glue::CppBoundClass, | 32 public WebViewPlugin::Delegate, |
25 public WebViewPlugin::Delegate { | 33 public gin::Wrappable<PluginPlaceholder> { |
26 public: | 34 public: |
| 35 static gin::WrapperInfo kWrapperInfo; |
27 | 36 |
28 WebViewPlugin* plugin() { return plugin_; } | 37 WebViewPlugin* plugin() { return plugin_; } |
29 | 38 |
30 void set_blocked_for_prerendering(bool blocked_for_prerendering) { | 39 void set_blocked_for_prerendering(bool blocked_for_prerendering) { |
31 is_blocked_for_prerendering_ = blocked_for_prerendering; | 40 is_blocked_for_prerendering_ = blocked_for_prerendering; |
32 } | 41 } |
33 | 42 |
34 void set_allow_loading(bool allow_loading) { allow_loading_ = allow_loading; } | 43 void set_allow_loading(bool allow_loading) { allow_loading_ = allow_loading; } |
35 | 44 |
36 protected: | 45 protected: |
| 46 virtual gin::ObjectTemplateBuilder GetObjectTemplateBuilder( |
| 47 v8::Isolate* isolate) OVERRIDE; |
| 48 |
37 // |render_frame| and |frame| are weak pointers. If either one is going away, | 49 // |render_frame| and |frame| are weak pointers. If either one is going away, |
38 // our |plugin_| will be destroyed as well and will notify us. | 50 // our |plugin_| will be destroyed as well and will notify us. |
39 PluginPlaceholder(content::RenderFrame* render_frame, | 51 PluginPlaceholder(content::RenderFrame* render_frame, |
40 blink::WebFrame* frame, | 52 blink::WebFrame* frame, |
41 const blink::WebPluginParams& params, | 53 const blink::WebPluginParams& params, |
42 const std::string& html_data, | 54 const std::string& html_data, |
43 GURL placeholderDataUrl); | 55 GURL placeholderDataUrl); |
44 | 56 |
45 virtual ~PluginPlaceholder(); | 57 virtual ~PluginPlaceholder(); |
46 | 58 |
(...skipping 11 matching lines...) Expand all Loading... |
58 // Replace this placeholder with a different plugin (which could be | 70 // Replace this placeholder with a different plugin (which could be |
59 // a placeholder again). | 71 // a placeholder again). |
60 void ReplacePlugin(blink::WebPlugin* new_plugin); | 72 void ReplacePlugin(blink::WebPlugin* new_plugin); |
61 | 73 |
62 // Hide this placeholder. | 74 // Hide this placeholder. |
63 void HidePlugin(); | 75 void HidePlugin(); |
64 | 76 |
65 // Load the blocked plugin. | 77 // Load the blocked plugin. |
66 void LoadPlugin(); | 78 void LoadPlugin(); |
67 | 79 |
68 // WebViewPlugin::Delegate method: | |
69 virtual void BindWebFrame(blink::WebFrame* frame) OVERRIDE; | |
70 | |
71 private: | 80 private: |
72 // WebViewPlugin::Delegate methods: | 81 // WebViewPlugin::Delegate methods: |
73 virtual void WillDestroyPlugin() OVERRIDE; | |
74 virtual void ShowContextMenu(const blink::WebMouseEvent&) OVERRIDE; | 82 virtual void ShowContextMenu(const blink::WebMouseEvent&) OVERRIDE; |
75 | 83 |
76 // Javascript callbacks: | 84 // Javascript callbacks: |
77 // All ignore arguments (which are, however, required by caller) and return | |
78 // nothing. | |
79 | |
80 // Load the blocked plugin by calling LoadPlugin(). | 85 // Load the blocked plugin by calling LoadPlugin(). |
81 void LoadCallback(const webkit_glue::CppArgumentList& args, | 86 void LoadCallback(); |
82 webkit_glue::CppVariant* result); | |
83 | 87 |
84 // Hide the blocked plugin by calling HidePlugin(). | 88 // Hide the blocked plugin by calling HidePlugin(). |
85 void HideCallback(const webkit_glue::CppArgumentList& args, | 89 void HideCallback(); |
86 webkit_glue::CppVariant* result); | |
87 | 90 |
88 void DidFinishLoadingCallback(const webkit_glue::CppArgumentList& args, | 91 void DidFinishLoadingCallback(); |
89 webkit_glue::CppVariant* result); | |
90 | 92 |
91 void UpdateMessage(); | 93 void UpdateMessage(); |
92 | 94 |
93 blink::WebFrame* frame_; | 95 blink::WebFrame* frame_; |
94 blink::WebPluginParams plugin_params_; | 96 blink::WebPluginParams plugin_params_; |
95 WebViewPlugin* plugin_; | 97 WebViewPlugin* plugin_; |
96 | 98 |
97 content::WebPluginInfo plugin_info_; | 99 content::WebPluginInfo plugin_info_; |
98 | 100 |
99 base::string16 message_; | 101 base::string16 message_; |
100 | 102 |
101 // True iff the plugin was blocked because the page was being prerendered. | 103 // True iff the plugin was blocked because the page was being prerendered. |
102 // Plugin will automatically be loaded when the page is displayed. | 104 // Plugin will automatically be loaded when the page is displayed. |
103 bool is_blocked_for_prerendering_; | 105 bool is_blocked_for_prerendering_; |
104 bool allow_loading_; | 106 bool allow_loading_; |
105 | 107 |
106 bool hidden_; | 108 bool hidden_; |
107 bool finished_loading_; | 109 bool finished_loading_; |
108 std::string identifier_; | 110 std::string identifier_; |
109 | 111 |
110 DISALLOW_COPY_AND_ASSIGN(PluginPlaceholder); | 112 DISALLOW_COPY_AND_ASSIGN(PluginPlaceholder); |
111 }; | 113 }; |
112 | 114 |
113 } // namespace plugins | 115 } // namespace plugins |
114 | 116 |
115 #endif // COMPONENTS_PLUGINS_RENDERER_PLUGIN_PLACEHOLDER_H_ | 117 #endif // COMPONENTS_PLUGINS_RENDERER_PLUGIN_PLACEHOLDER_H_ |
OLD | NEW |