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

Unified Diff: content/browser/tab_contents/render_view_host_manager.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/tab_contents/render_view_host_manager.h
diff --git a/content/browser/tab_contents/render_view_host_manager.h b/content/browser/tab_contents/render_view_host_manager.h
index 01ddbc8c6efc9e4ee16dd8de75ac60a555868ceb..572a9a2cc5cba8968450cfac490fffda0a7a5bcc 100644
--- a/content/browser/tab_contents/render_view_host_manager.h
+++ b/content/browser/tab_contents/render_view_host_manager.h
@@ -10,6 +10,7 @@
#include "base/logging.h"
#include "base/memory/scoped_ptr.h"
#include "content/browser/renderer_host/render_view_host_delegate.h"
+#include "content/common/notification_observer.h"
#include "content/common/notification_registrar.h"
class WebUI;
@@ -25,7 +26,8 @@ class SiteInstance;
// it is easy to do. But we can also have transitions of processes (and hence
// RenderViewHosts) that can get complex.
class RenderViewHostManager
- : public RenderViewHostDelegate::RendererManagement {
+ : public RenderViewHostDelegate::RendererManagement,
+ public NotificationObserver {
public:
// Functions implemented by our owner that we need.
//
@@ -113,6 +115,11 @@ class RenderViewHostManager
// Returns the Web UI for the pending navigation, or NULL of none applies.
WebUI* pending_web_ui() const { return pending_web_ui_.get(); }
+ // NotificationObserver.
jam 2011/05/10 04:45:18 nit: the usual style is to add the inherited metho
Charlie Reis 2011/05/10 18:42:19 Done.
+ virtual void Observe(NotificationType type,
+ const NotificationSource& source,
+ const NotificationDetails& details);
+
// Called when we want to instruct the renderer to navigate to the given
// navigation entry. It may create a new RenderViewHost or re-use an existing
// one. The RenderViewHost to navigate will be returned. Returns NULL if one
@@ -224,6 +231,10 @@ class RenderViewHostManager
RenderViewHost* UpdateRendererStateForNavigate(const NavigationEntry& entry);
+ // Called when a renderer process is starting to close. We should not
+ // schedule new navigations in its swapped out RenderViewHosts after this.
+ void RendererProcessClosing(RenderProcessHost* render_process_host);
+
// Our delegate, not owned by us. Guaranteed non-NULL.
Delegate* delegate_;

Powered by Google App Engine
This is Rietveld 408576698