diff options
author | bauerb@chromium.org <bauerb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-30 11:24:51 +0000 |
---|---|---|
committer | bauerb@chromium.org <bauerb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-30 11:24:51 +0000 |
commit | 57b66d09c510ff03605c9dddc289a17dc79f17e7 (patch) | |
tree | c8dd27f47eb1ea5f00ead6cc1898ec997597228f /chrome/renderer/blocked_plugin.h | |
parent | e6437b5b5aef788023788991840e2de227480da1 (diff) | |
download | chromium_src-57b66d09c510ff03605c9dddc289a17dc79f17e7.zip chromium_src-57b66d09c510ff03605c9dddc289a17dc79f17e7.tar.gz chromium_src-57b66d09c510ff03605c9dddc289a17dc79f17e7.tar.bz2 |
Move disabling outdated plugins to labs and update UI to Glen's mocks.
BUG=47731
TEST=Disabling outdated plugins should show up in about:labs
Review URL: http://codereview.chromium.org/3386033
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61055 0039d316-1c4b-4281-b951-d872f2087c98
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(); |