diff options
Diffstat (limited to 'chrome/renderer/blocked_plugin.h')
-rw-r--r-- | chrome/renderer/blocked_plugin.h | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/chrome/renderer/blocked_plugin.h b/chrome/renderer/blocked_plugin.h index fa3eaee..e32028a 100644 --- a/chrome/renderer/blocked_plugin.h +++ b/chrome/renderer/blocked_plugin.h @@ -23,6 +23,7 @@ class BlockedPlugin : public CppBoundClass, BlockedPlugin(RenderView* render_view, WebKit::WebFrame* frame, const WebKit::WebPluginParams& params, + const WebPreferences& settings, PluginGroup* group); WebViewPlugin* plugin() { return plugin_; } @@ -37,21 +38,13 @@ class BlockedPlugin : public CppBoundClass, const NotificationDetails& details); private: - virtual ~BlockedPlugin() { } + virtual ~BlockedPlugin(); // Javascript callbacks: // Load the blocked plugin by calling LoadPlugin() below. // Takes no arguments, and returns nothing. void Load(const CppArgumentList& args, CppVariant* result); - // Update an outdated plugin. Takes one argument, the URL to download the - // latest version, and returns nothing. - void Update(const CppArgumentList& args, CppVariant* result); - - // Tells the browser to navigate to |url| (to download the latest version of - // the plugin there). - void OpenURL(GURL& url); - // Load the blocked plugin. void LoadPlugin(); |