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

Unified Diff: chrome/renderer/render_view.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/render_view.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/render_view.cc
===================================================================
--- chrome/renderer/render_view.cc (revision 70902)
+++ chrome/renderer/render_view.cc (working copy)
@@ -886,6 +886,14 @@
plugin_delegates_.erase(delegate);
}
+void RenderView::RegisterBlockedPlugin(BlockedPlugin* blocked_plugin) {
+ blocked_plugins_.insert(blocked_plugin);
+}
+
+void RenderView::UnregisterBlockedPlugin(BlockedPlugin* blocked_plugin) {
+ blocked_plugins_.erase(blocked_plugin);
+}
+
void RenderView::Init(gfx::NativeViewId parent_hwnd,
int32 opener_id,
const RendererPreferences& renderer_prefs,
@@ -4770,11 +4778,8 @@
}
void RenderView::OnLoadBlockedPlugins() {
- current_content_settings_.settings[CONTENT_SETTINGS_TYPE_PLUGINS] =
- CONTENT_SETTING_ALLOW;
- NotificationService::current()->Notify(NotificationType::SHOULD_LOAD_PLUGINS,
- Source<RenderView>(this),
- NotificationService::NoDetails());
+ while (!blocked_plugins_.empty())
+ (*blocked_plugins_.begin())->LoadPlugin();
}
void RenderView::OnFileChooserResponse(const std::vector<FilePath>& paths) {
« no previous file with comments | « chrome/renderer/render_view.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698