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

Unified Diff: content/browser/renderer_host/render_process_host.h

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: Address 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/render_process_host.h
diff --git a/content/browser/renderer_host/render_process_host.h b/content/browser/renderer_host/render_process_host.h
index b38402658e297a0061e09cfe23dec2f20da1c73a..5e7d5a796edacac953f66839f81666817928d482 100644
--- a/content/browser/renderer_host/render_process_host.h
+++ b/content/browser/renderer_host/render_process_host.h
@@ -190,6 +190,12 @@ class RenderProcessHost : public IPC::Channel::Sender,
virtual void WidgetHidden() = 0;
virtual int VisibleWidgetCount() const = 0;
+ // Track the count of pending views that are being swapped back in. Called
+ // by listeners to register and unregister pending views to prevent the
+ // process from exiting.
+ virtual void AddPendingView() = 0;
Matt Perry 2011/05/10 01:14:02 since this is an interface on the class already, w
Charlie Reis 2011/05/10 01:33:09 Actually, I'm a little unclear on the difference b
jam 2011/05/10 04:45:18 RenderProcessHost was added so that we can have a
Charlie Reis 2011/05/10 18:42:19 Ok. Since there's no harm in having these counter
+ virtual void RemovePendingView() = 0;
+
// Try to shutdown the associated renderer process as fast as possible.
// If this renderer has any RenderViews with unload handlers, then this
// function does nothing. The current implementation uses TerminateProcess.

Powered by Google App Engine
This is Rietveld 408576698