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

Unified Diff: chrome/renderer/blocked_plugin.cc

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/renderer/blocked_plugin.h ('k') | chrome/renderer/render_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/blocked_plugin.cc
===================================================================
--- chrome/renderer/blocked_plugin.cc (revision 70902)
+++ chrome/renderer/blocked_plugin.cc (working copy)
@@ -9,11 +9,8 @@
#include "base/string_piece.h"
#include "base/values.h"
#include "chrome/common/jstemplate_builder.h"
-#include "chrome/common/notification_service.h"
-#include "chrome/common/render_messages.h"
#include "chrome/renderer/render_view.h"
#include "grit/generated_resources.h"
-#include "grit/renderer_resources.h"
#include "third_party/WebKit/WebKit/chromium/public/WebContextMenuData.h"
#include "third_party/WebKit/WebKit/chromium/public/WebData.h"
#include "third_party/WebKit/WebKit/chromium/public/WebFrame.h"
@@ -70,13 +67,12 @@
html_data,
GURL(kBlockedPluginDataURL));
- registrar_.Add(this,
- NotificationType::SHOULD_LOAD_PLUGINS,
- NotificationService::AllSources());
+ render_view_->RegisterBlockedPlugin(this);
}
BlockedPlugin::~BlockedPlugin() {
render_view_->CustomMenuListenerDestroyed(this);
+ render_view_->UnregisterBlockedPlugin(this);
}
void BlockedPlugin::BindWebFrame(WebFrame* frame) {
@@ -130,20 +126,6 @@
}
}
-void BlockedPlugin::Observe(NotificationType type,
- const NotificationSource& source,
- const NotificationDetails& details) {
- if (type == NotificationType::SHOULD_LOAD_PLUGINS) {
- LoadPlugin();
- } else {
- NOTREACHED();
- }
-}
-
-void BlockedPlugin::Load(const CppArgumentList& args, CppVariant* result) {
- LoadPlugin();
-}
-
void BlockedPlugin::LoadPlugin() {
CHECK(plugin_);
WebPluginContainer* container = plugin_->container();
@@ -159,6 +141,10 @@
}
}
+void BlockedPlugin::Load(const CppArgumentList& args, CppVariant* result) {
+ LoadPlugin();
+}
+
void BlockedPlugin::HidePlugin() {
CHECK(plugin_);
WebPluginContainer* container = plugin_->container();
« no previous file with comments | « chrome/renderer/blocked_plugin.h ('k') | chrome/renderer/render_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698