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

Unified Diff: chrome/renderer/blocked_plugin.h

Issue 6209004: Switch BlockedPlugins away from using notifications... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/notification_type.h ('k') | chrome/renderer/blocked_plugin.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/blocked_plugin.h
===================================================================
--- chrome/renderer/blocked_plugin.h (revision 70902)
+++ chrome/renderer/blocked_plugin.h (working copy)
@@ -6,8 +6,6 @@
#define CHROME_RENDERER_BLOCKED_PLUGIN_H_
#pragma once
-#include "chrome/common/notification_observer.h"
-#include "chrome/common/notification_registrar.h"
#include "chrome/renderer/custom_menu_listener.h"
#include "third_party/WebKit/WebKit/chromium/public/WebPluginParams.h"
#include "webkit/glue/cpp_bound_class.h"
@@ -25,7 +23,6 @@
class BlockedPlugin : public CppBoundClass,
public webkit::npapi::WebViewPlugin::Delegate,
- public NotificationObserver,
public CustomMenuListener {
public:
BlockedPlugin(RenderView* render_view,
@@ -43,14 +40,12 @@
virtual void WillDestroyPlugin();
virtual void ShowContextMenu(const WebKit::WebMouseEvent&);
- // NotificationObserver methods:
- virtual void Observe(NotificationType type,
- const NotificationSource& source,
- const NotificationDetails& details);
-
// CustomMenuListener methods:
virtual void MenuItemSelected(unsigned id);
+ // Load the blocked plugin.
+ void LoadPlugin();
+
private:
virtual ~BlockedPlugin();
@@ -59,9 +54,6 @@
// Takes no arguments, and returns nothing.
void Load(const CppArgumentList& args, CppVariant* result);
- // Load the blocked plugin.
- void LoadPlugin();
-
// Hide the blocked plugin.
void HidePlugin();
@@ -71,8 +63,6 @@
webkit::npapi::WebViewPlugin* plugin_;
// The name of the plugin that was blocked.
string16 name_;
-
- NotificationRegistrar registrar_;
};
#endif // CHROME_RENDERER_BLOCKED_PLUGIN_H_
« no previous file with comments | « chrome/common/notification_type.h ('k') | chrome/renderer/blocked_plugin.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698