OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 CHROME_RENDERER_BLOCKED_PLUGIN_H_ | 5 #ifndef CHROME_RENDERER_BLOCKED_PLUGIN_H_ |
6 #define CHROME_RENDERER_BLOCKED_PLUGIN_H_ | 6 #define CHROME_RENDERER_BLOCKED_PLUGIN_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "chrome/common/notification_observer.h" | |
10 #include "chrome/common/notification_registrar.h" | |
11 #include "chrome/renderer/custom_menu_listener.h" | 9 #include "chrome/renderer/custom_menu_listener.h" |
12 #include "third_party/WebKit/WebKit/chromium/public/WebPluginParams.h" | 10 #include "third_party/WebKit/WebKit/chromium/public/WebPluginParams.h" |
13 #include "webkit/glue/cpp_bound_class.h" | 11 #include "webkit/glue/cpp_bound_class.h" |
14 #include "webkit/plugins/npapi/webview_plugin.h" | 12 #include "webkit/plugins/npapi/webview_plugin.h" |
15 | 13 |
16 class GURL; | 14 class GURL; |
17 class RenderView; | 15 class RenderView; |
18 | 16 |
19 | 17 |
20 namespace webkit { | 18 namespace webkit { |
21 namespace npapi { | 19 namespace npapi { |
22 class PluginGroup; | 20 class PluginGroup; |
23 } | 21 } |
24 } | 22 } |
25 | 23 |
26 class BlockedPlugin : public CppBoundClass, | 24 class BlockedPlugin : public CppBoundClass, |
27 public webkit::npapi::WebViewPlugin::Delegate, | 25 public webkit::npapi::WebViewPlugin::Delegate, |
28 public NotificationObserver, | |
29 public CustomMenuListener { | 26 public CustomMenuListener { |
30 public: | 27 public: |
31 BlockedPlugin(RenderView* render_view, | 28 BlockedPlugin(RenderView* render_view, |
32 WebKit::WebFrame* frame, | 29 WebKit::WebFrame* frame, |
33 const webkit::npapi::PluginGroup& info, | 30 const webkit::npapi::PluginGroup& info, |
34 const WebKit::WebPluginParams& params, | 31 const WebKit::WebPluginParams& params, |
35 const WebPreferences& settings, | 32 const WebPreferences& settings, |
36 int template_id, | 33 int template_id, |
37 const string16& message); | 34 const string16& message); |
38 | 35 |
39 webkit::npapi::WebViewPlugin* plugin() { return plugin_; } | 36 webkit::npapi::WebViewPlugin* plugin() { return plugin_; } |
40 | 37 |
41 // WebViewPlugin::Delegate methods: | 38 // WebViewPlugin::Delegate methods: |
42 virtual void BindWebFrame(WebKit::WebFrame* frame); | 39 virtual void BindWebFrame(WebKit::WebFrame* frame); |
43 virtual void WillDestroyPlugin(); | 40 virtual void WillDestroyPlugin(); |
44 virtual void ShowContextMenu(const WebKit::WebMouseEvent&); | 41 virtual void ShowContextMenu(const WebKit::WebMouseEvent&); |
45 | 42 |
46 // NotificationObserver methods: | |
47 virtual void Observe(NotificationType type, | |
48 const NotificationSource& source, | |
49 const NotificationDetails& details); | |
50 | |
51 // CustomMenuListener methods: | 43 // CustomMenuListener methods: |
52 virtual void MenuItemSelected(unsigned id); | 44 virtual void MenuItemSelected(unsigned id); |
53 | 45 |
| 46 // Load the blocked plugin. |
| 47 void LoadPlugin(); |
| 48 |
54 private: | 49 private: |
55 virtual ~BlockedPlugin(); | 50 virtual ~BlockedPlugin(); |
56 | 51 |
57 // Javascript callbacks: | 52 // Javascript callbacks: |
58 // Load the blocked plugin by calling LoadPlugin() below. | 53 // Load the blocked plugin by calling LoadPlugin() below. |
59 // Takes no arguments, and returns nothing. | 54 // Takes no arguments, and returns nothing. |
60 void Load(const CppArgumentList& args, CppVariant* result); | 55 void Load(const CppArgumentList& args, CppVariant* result); |
61 | 56 |
62 // Load the blocked plugin. | |
63 void LoadPlugin(); | |
64 | |
65 // Hide the blocked plugin. | 57 // Hide the blocked plugin. |
66 void HidePlugin(); | 58 void HidePlugin(); |
67 | 59 |
68 RenderView* render_view_; | 60 RenderView* render_view_; |
69 WebKit::WebFrame* frame_; | 61 WebKit::WebFrame* frame_; |
70 WebKit::WebPluginParams plugin_params_; | 62 WebKit::WebPluginParams plugin_params_; |
71 webkit::npapi::WebViewPlugin* plugin_; | 63 webkit::npapi::WebViewPlugin* plugin_; |
72 // The name of the plugin that was blocked. | 64 // The name of the plugin that was blocked. |
73 string16 name_; | 65 string16 name_; |
74 | |
75 NotificationRegistrar registrar_; | |
76 }; | 66 }; |
77 | 67 |
78 #endif // CHROME_RENDERER_BLOCKED_PLUGIN_H_ | 68 #endif // CHROME_RENDERER_BLOCKED_PLUGIN_H_ |
OLD | NEW |