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

Unified Diff: content/browser/browser_plugin/old/browser_plugin_host.cc

Issue 10779042: Move notifications only used in chrome/ to chrome/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix oops Created 8 years, 5 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
Index: content/browser/browser_plugin/old/browser_plugin_host.cc
diff --git a/content/browser/browser_plugin/old/browser_plugin_host.cc b/content/browser/browser_plugin/old/browser_plugin_host.cc
index bacca9de5684518fd894b880f048e8a1e3b24022..da9d136f622fc1af988ea7c1eb91a65f59caf025 100644
--- a/content/browser/browser_plugin/old/browser_plugin_host.cc
+++ b/content/browser/browser_plugin/old/browser_plugin_host.cc
@@ -33,7 +33,7 @@ BrowserPluginHost::BrowserPluginHost(
// Construct plumbing helpers when a new RenderViewHost is created for
// this BrowserPluginHost's WebContentsImpl.
registrar_.Add(this,
- NOTIFICATION_RENDER_VIEW_HOST_CREATED_FOR_TAB,
+ NOTIFICATION_WEB_CONTENTS_RENDER_VIEW_HOST_CREATED,
Source<WebContents>(web_contents));
}
@@ -208,7 +208,7 @@ void BrowserPluginHost::Observe(
const NotificationSource& source,
const NotificationDetails& details) {
switch (type) {
- case NOTIFICATION_RENDER_VIEW_HOST_CREATED_FOR_TAB: {
+ case NOTIFICATION_WEB_CONTENTS_RENDER_VIEW_HOST_CREATED: {
RenderViewHost* render_view_host =
Details<RenderViewHost>(details).ptr();
// BrowserPluginHostHelper is destroyed when its associated RenderViewHost

Powered by Google App Engine
This is Rietveld 408576698