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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_TAB_CONTENTS_RENDER_VIEW_HOST_MANAGER_H_ 5 #ifndef CONTENT_BROWSER_TAB_CONTENTS_RENDER_VIEW_HOST_MANAGER_H_
6 #define CONTENT_BROWSER_TAB_CONTENTS_RENDER_VIEW_HOST_MANAGER_H_ 6 #define CONTENT_BROWSER_TAB_CONTENTS_RENDER_VIEW_HOST_MANAGER_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "content/browser/renderer_host/render_view_host_delegate.h" 12 #include "content/browser/renderer_host/render_view_host_delegate.h"
13 #include "content/common/notification_observer.h"
13 #include "content/common/notification_registrar.h" 14 #include "content/common/notification_registrar.h"
14 15
15 class WebUI; 16 class WebUI;
16 class InterstitialPage; 17 class InterstitialPage;
17 class NavigationController; 18 class NavigationController;
18 class NavigationEntry; 19 class NavigationEntry;
19 class Profile; 20 class Profile;
20 class RenderWidgetHostView; 21 class RenderWidgetHostView;
21 class RenderViewHost; 22 class RenderViewHost;
22 class SiteInstance; 23 class SiteInstance;
23 24
24 // Manages RenderViewHosts for a TabContents. Normally there is only one and 25 // Manages RenderViewHosts for a TabContents. Normally there is only one and
25 // it is easy to do. But we can also have transitions of processes (and hence 26 // it is easy to do. But we can also have transitions of processes (and hence
26 // RenderViewHosts) that can get complex. 27 // RenderViewHosts) that can get complex.
27 class RenderViewHostManager 28 class RenderViewHostManager
28 : public RenderViewHostDelegate::RendererManagement { 29 : public RenderViewHostDelegate::RendererManagement,
30 public NotificationObserver {
29 public: 31 public:
30 // Functions implemented by our owner that we need. 32 // Functions implemented by our owner that we need.
31 // 33 //
32 // TODO(brettw) Clean this up! These are all the functions in TabContents that 34 // TODO(brettw) Clean this up! These are all the functions in TabContents that
33 // are required to run this class. The design should probably be better such 35 // are required to run this class. The design should probably be better such
34 // that these are more clear. 36 // that these are more clear.
35 // 37 //
36 // There is additional complexity that some of the functions we need in 38 // There is additional complexity that some of the functions we need in
37 // TabContents are inherited and non-virtual. These are named with 39 // TabContents are inherited and non-virtual. These are named with
38 // "RenderManager" so that the duplicate implementation of them will be clear. 40 // "RenderManager" so that the duplicate implementation of them will be clear.
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 RenderViewHost* pending_render_view_host() const { 108 RenderViewHost* pending_render_view_host() const {
107 return pending_render_view_host_; 109 return pending_render_view_host_;
108 } 110 }
109 111
110 // Returns the current committed Web UI or NULL if none applies. 112 // Returns the current committed Web UI or NULL if none applies.
111 WebUI* web_ui() const { return web_ui_.get(); } 113 WebUI* web_ui() const { return web_ui_.get(); }
112 114
113 // Returns the Web UI for the pending navigation, or NULL of none applies. 115 // Returns the Web UI for the pending navigation, or NULL of none applies.
114 WebUI* pending_web_ui() const { return pending_web_ui_.get(); } 116 WebUI* pending_web_ui() const { return pending_web_ui_.get(); }
115 117
118 // 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.
119 virtual void Observe(NotificationType type,
120 const NotificationSource& source,
121 const NotificationDetails& details);
122
116 // Called when we want to instruct the renderer to navigate to the given 123 // Called when we want to instruct the renderer to navigate to the given
117 // navigation entry. It may create a new RenderViewHost or re-use an existing 124 // navigation entry. It may create a new RenderViewHost or re-use an existing
118 // one. The RenderViewHost to navigate will be returned. Returns NULL if one 125 // one. The RenderViewHost to navigate will be returned. Returns NULL if one
119 // could not be created. 126 // could not be created.
120 RenderViewHost* Navigate(const NavigationEntry& entry); 127 RenderViewHost* Navigate(const NavigationEntry& entry);
121 128
122 // Instructs the various live views to stop. Called when the user directed the 129 // Instructs the various live views to stop. Called when the user directed the
123 // page to stop loading. 130 // page to stop loading.
124 void Stop(); 131 void Stop();
125 132
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 // Sets the pending RenderViewHost/WebUI to be the active one. Note that this 224 // Sets the pending RenderViewHost/WebUI to be the active one. Note that this
218 // doesn't require the pending render_view_host_ pointer to be non-NULL, since 225 // doesn't require the pending render_view_host_ pointer to be non-NULL, since
219 // there could be Web UI switching as well. Call this for every commit. 226 // there could be Web UI switching as well. Call this for every commit.
220 void CommitPending(); 227 void CommitPending();
221 228
222 // Helper method to terminate the pending RenderViewHost. 229 // Helper method to terminate the pending RenderViewHost.
223 void CancelPending(); 230 void CancelPending();
224 231
225 RenderViewHost* UpdateRendererStateForNavigate(const NavigationEntry& entry); 232 RenderViewHost* UpdateRendererStateForNavigate(const NavigationEntry& entry);
226 233
234 // Called when a renderer process is starting to close. We should not
235 // schedule new navigations in its swapped out RenderViewHosts after this.
236 void RendererProcessClosing(RenderProcessHost* render_process_host);
237
227 // Our delegate, not owned by us. Guaranteed non-NULL. 238 // Our delegate, not owned by us. Guaranteed non-NULL.
228 Delegate* delegate_; 239 Delegate* delegate_;
229 240
230 // Whether a navigation requiring different RenderView's is pending. This is 241 // Whether a navigation requiring different RenderView's is pending. This is
231 // either cross-site request is (in the new process model), or when required 242 // either cross-site request is (in the new process model), or when required
232 // for the view type (like view source versus not). 243 // for the view type (like view source versus not).
233 bool cross_navigation_pending_; 244 bool cross_navigation_pending_;
234 245
235 // Implemented by the owner of this class, this delegate is installed into all 246 // Implemented by the owner of this class, this delegate is installed into all
236 // the RenderViewHosts that we create. 247 // the RenderViewHosts that we create.
(...skipping 27 matching lines...) Expand all
264 }; 275 };
265 276
266 // The "details" for a NOTIFY_RENDER_VIEW_HOST_CHANGED notification. The old 277 // The "details" for a NOTIFY_RENDER_VIEW_HOST_CHANGED notification. The old
267 // host can be NULL when the first RenderViewHost is set. 278 // host can be NULL when the first RenderViewHost is set.
268 struct RenderViewHostSwitchedDetails { 279 struct RenderViewHostSwitchedDetails {
269 RenderViewHost* old_host; 280 RenderViewHost* old_host;
270 RenderViewHost* new_host; 281 RenderViewHost* new_host;
271 }; 282 };
272 283
273 #endif // CONTENT_BROWSER_TAB_CONTENTS_RENDER_VIEW_HOST_MANAGER_H_ 284 #endif // CONTENT_BROWSER_TAB_CONTENTS_RENDER_VIEW_HOST_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698