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

Unified Diff: content/browser/renderer_host/browser_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: 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/renderer_host/browser_render_process_host.h
diff --git a/content/browser/renderer_host/browser_render_process_host.h b/content/browser/renderer_host/browser_render_process_host.h
index d3eee336baa8ec0ee83e940973273aa2049c0a63..694469b8db754681d3867d8d4e670723bf194f01 100644
--- a/content/browser/renderer_host/browser_render_process_host.h
+++ b/content/browser/renderer_host/browser_render_process_host.h
@@ -58,6 +58,9 @@ class BrowserRenderProcessHost : public RenderProcessHost,
virtual void WidgetRestored();
virtual void WidgetHidden();
virtual int VisibleWidgetCount() const;
+ virtual void AddPendingView();
+ virtual void RemovePendingView();
+ virtual int PendingViewCount() const;
jam 2011/05/06 17:45:11 I don't see this being used anywhere?
Charlie Reis 2011/05/10 00:57:03 Done.
virtual bool FastShutdownIfPossible();
virtual bool SendWithTimeout(IPC::Message* msg, int timeout_ms);
virtual base::ProcessHandle GetHandle();
@@ -81,6 +84,7 @@ class BrowserRenderProcessHost : public RenderProcessHost,
void CreateMessageFilters();
// Control message handlers.
+ void OnShutdownRequest();
void OnUpdatedCacheStats(const WebKit::WebCache::UsageStats& stats);
void SuddenTerminationChanged(bool enabled);
void OnUserMetricsRecordAction(const std::string& action);
@@ -103,6 +107,11 @@ class BrowserRenderProcessHost : public RenderProcessHost,
// backgrounded.
int32 visible_widgets_;
+ // The count of currently swapped out but pending RenderViews. We have
+ // started to swap these back in, so the renderer process should not exit if
+ // this count is non-zero.
+ int32 pending_views_;
+
// Does this process have backgrounded priority.
bool backgrounded_;

Powered by Google App Engine
This is Rietveld 408576698