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

Unified Diff: content/browser/tab_contents/tab_contents.cc

Issue 6927014: Avoid exiting the renderer process if it has a pending render view. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix pre-render issue. Created 9 years, 8 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/tab_contents/tab_contents.cc
diff --git a/content/browser/tab_contents/tab_contents.cc b/content/browser/tab_contents/tab_contents.cc
index 4119f0f22b2fbe09950f2b64a65705a2eda15241..d644abb8b4675c5ffeec5043588c19578feb9208 100644
--- a/content/browser/tab_contents/tab_contents.cc
+++ b/content/browser/tab_contents/tab_contents.cc
@@ -259,6 +259,8 @@ TabContents::TabContents(Profile* profile,
pref_change_registrar_.Add(kPrefsToObserve[i], this);
}
+ registrar_.Add(this, NotificationType::RENDERER_PROCESS_CLOSING,
+ NotificationService::AllSources());
registrar_.Add(this, NotificationType::RENDER_WIDGET_HOST_DESTROYED,
NotificationService::AllSources());
#if defined(OS_LINUX)
@@ -2148,6 +2150,11 @@ void TabContents::Observe(NotificationType type,
}
break;
}
+ case NotificationType::RENDERER_PROCESS_CLOSING:
jam 2011/05/06 17:45:11 why do you listen to this in TabContents and then
Charlie Reis 2011/05/10 00:57:03 RenderViewHostManager wasn't a NotificationObserve
+ render_manager_.RendererProcessClosing(
+ Source<RenderProcessHost>(source).ptr());
+ break;
+
case NotificationType::RENDER_WIDGET_HOST_DESTROYED:
view_->RenderWidgetHostDestroyed(Source<RenderWidgetHost>(source).ptr());
break;

Powered by Google App Engine
This is Rietveld 408576698