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

Unified Diff: content/browser/renderer_host/browser_render_process_host.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: More feedback. Created 9 years, 7 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/renderer_host/browser_render_process_host.cc
diff --git a/content/browser/renderer_host/browser_render_process_host.cc b/content/browser/renderer_host/browser_render_process_host.cc
index 7222b096aa1ee70a107f712d16a55ce7e821ea76..e482381a72bcebcccc48ff2f819c538cf218df69 100644
--- a/content/browser/renderer_host/browser_render_process_host.cc
+++ b/content/browser/renderer_host/browser_render_process_host.cc
@@ -784,6 +784,8 @@ bool BrowserRenderProcessHost::OnMessageReceived(const IPC::Message& msg) {
// Dispatch control messages.
bool msg_is_ok = true;
IPC_BEGIN_MESSAGE_MAP_EX(BrowserRenderProcessHost, msg, msg_is_ok)
+ IPC_MESSAGE_HANDLER(ChildProcessHostMsg_ShutdownRequest,
+ OnShutdownRequest)
IPC_MESSAGE_HANDLER(ViewHostMsg_UpdatedCacheStats,
OnUpdatedCacheStats)
IPC_MESSAGE_HANDLER(ViewHostMsg_SuddenTerminationChanged,
@@ -823,6 +825,10 @@ void BrowserRenderProcessHost::OnChannelConnected(int32 peer_pid) {
Send(new ChildProcessMsg_SetIPCLoggingEnabled(
IPC::Logging::GetInstance()->Enabled()));
#endif
+
+ // Make sure the child checks with us before exiting, so that we do not try
+ // to schedule a new navigation in a swapped out and exiting renderer.
+ Send(new ChildProcessMsg_AskBeforeShutdown());
}
void BrowserRenderProcessHost::OnChannelError() {
@@ -878,6 +884,20 @@ void BrowserRenderProcessHost::OnChannelError() {
// TODO(darin): clean this up
}
+void BrowserRenderProcessHost::OnShutdownRequest() {
+ // Don't shutdown if there are pending RenderViews being swapped back in.
+ if (pending_views_)
+ return;
+
+ // Notify any tabs that might have swapped out renderers from this process.
+ // They should not attempt to swap them back in.
+ NotificationService::current()->Notify(
+ NotificationType::RENDERER_PROCESS_CLOSING,
+ Source<RenderProcessHost>(this), NotificationService::NoDetails());
+
+ Send(new ChildProcessMsg_Shutdown());
+}
+
void BrowserRenderProcessHost::OnUpdatedCacheStats(
const WebCache::UsageStats& stats) {
WebCacheManager::GetInstance()->ObserveStats(id(), stats);
« no previous file with comments | « content/browser/renderer_host/browser_render_process_host.h ('k') | content/browser/renderer_host/render_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698