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

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: 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/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..e2033d15ee44e6e389d5bd5d0fc5d01b5de93a4f 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.
//
@@ -171,6 +173,11 @@ class RenderViewHostManager
int new_request_id);
virtual void OnCrossSiteNavigationCanceled();
+ // NotificationObserver implementation.
+ virtual void Observe(NotificationType type,
+ const NotificationSource& source,
+ const NotificationDetails& details);
+
// Called when a RenderViewHost is about to be deleted.
void RenderViewDeleted(RenderViewHost* rvh);
@@ -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_;
« no previous file with comments | « content/browser/renderer_host/render_process_host.cc ('k') | content/browser/tab_contents/render_view_host_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698