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

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: 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 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 InterstitialPage* interstitial_page() const { 166 InterstitialPage* interstitial_page() const {
165 return interstitial_page_; 167 return interstitial_page_;
166 } 168 }
167 169
168 // RenderViewHostDelegate::RendererManagement implementation. 170 // RenderViewHostDelegate::RendererManagement implementation.
169 virtual void ShouldClosePage(bool for_cross_site_transition, bool proceed); 171 virtual void ShouldClosePage(bool for_cross_site_transition, bool proceed);
170 virtual void OnCrossSiteResponse(int new_render_process_host_id, 172 virtual void OnCrossSiteResponse(int new_render_process_host_id,
171 int new_request_id); 173 int new_request_id);
172 virtual void OnCrossSiteNavigationCanceled(); 174 virtual void OnCrossSiteNavigationCanceled();
173 175
176 // NotificationObserver implementation.
177 virtual void Observe(NotificationType type,
178 const NotificationSource& source,
179 const NotificationDetails& details);
180
174 // Called when a RenderViewHost is about to be deleted. 181 // Called when a RenderViewHost is about to be deleted.
175 void RenderViewDeleted(RenderViewHost* rvh); 182 void RenderViewDeleted(RenderViewHost* rvh);
176 183
177 // Allows a caller to swap in a provided RenderViewHost to replace the 184 // Allows a caller to swap in a provided RenderViewHost to replace the
178 // current RenderViewHost. The current RVH will be shutdown and ultimately 185 // current RenderViewHost. The current RVH will be shutdown and ultimately
179 // deleted. 186 // deleted.
180 void SwapInRenderViewHost(RenderViewHost* rvh); 187 void SwapInRenderViewHost(RenderViewHost* rvh);
181 188
182 private: 189 private:
183 friend class TestTabContents; 190 friend class TestTabContents;
(...skipping 33 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
« 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