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

Side by Side Diff: content/browser/tab_contents/render_view_host_manager.h

Issue 6319001: Support window.opener after a process swap. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Better message filtering approach. 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_registrar.h" 13 #include "content/common/notification_registrar.h"
14 #include "content/browser/site_instance.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 23
24 // Manages RenderViewHosts for a TabContents. Normally there is only one and 24 // 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 25 // it is easy to do. But we can also have transitions of processes (and hence
26 // RenderViewHosts) that can get complex. 26 // RenderViewHosts) that can get complex.
27 class RenderViewHostManager 27 class RenderViewHostManager
28 : public RenderViewHostDelegate::RendererManagement { 28 : public RenderViewHostDelegate::RendererManagement {
29 public: 29 public:
30 // Functions implemented by our owner that we need. 30 // Functions implemented by our owner that we need.
31 // 31 //
32 // TODO(brettw) Clean this up! These are all the functions in TabContents that 32 // TODO(brettw) Clean this up! These are all the functions in TabContents that
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 virtual void OnCrossSiteNavigationCanceled(); 172 virtual void OnCrossSiteNavigationCanceled();
173 173
174 // Called when a RenderViewHost is about to be deleted. 174 // Called when a RenderViewHost is about to be deleted.
175 void RenderViewDeleted(RenderViewHost* rvh); 175 void RenderViewDeleted(RenderViewHost* rvh);
176 176
177 // Allows a caller to swap in a provided RenderViewHost to replace the 177 // Allows a caller to swap in a provided RenderViewHost to replace the
178 // current RenderViewHost. The current RVH will be shutdown and ultimately 178 // current RenderViewHost. The current RVH will be shutdown and ultimately
179 // deleted. 179 // deleted.
180 void SwapInRenderViewHost(RenderViewHost* rvh); 180 void SwapInRenderViewHost(RenderViewHost* rvh);
181 181
182 // Returns whether the given RenderViewHost is on the list of swapped out
183 // RenderViewHosts.
184 bool IsSwappedOut(RenderViewHost* rvh);
185
182 private: 186 private:
183 friend class TestTabContents; 187 friend class TestTabContents;
184 friend class RenderViewHostManagerTest; 188 friend class RenderViewHostManagerTest;
185 189
186 // Returns whether this tab should transition to a new renderer for 190 // Returns whether this tab should transition to a new renderer for
187 // cross-site URLs. Enabled unless we see the --process-per-tab command line 191 // cross-site URLs. Enabled unless we see the --process-per-tab command line
188 // switch. Can be overridden in unit tests. 192 // switch. Can be overridden in unit tests.
189 bool ShouldTransitionCrossSite(); 193 bool ShouldTransitionCrossSite();
190 194
191 // Returns true if the two navigation entries are incompatible in some way 195 // Returns true if the two navigation entries are incompatible in some way
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 // have an associated Web UI, in which case the Web UI pointer will be non- 251 // have an associated Web UI, in which case the Web UI pointer will be non-
248 // NULL. 252 // NULL.
249 // 253 //
250 // The pending_web_ui may be non-NULL even when the pending_render_view_host_ 254 // The pending_web_ui may be non-NULL even when the pending_render_view_host_
251 // is. This will happen when we're transitioning between two Web UI pages: 255 // is. This will happen when we're transitioning between two Web UI pages:
252 // the RVH won't be swapped, so the pending pointer will be unused, but there 256 // the RVH won't be swapped, so the pending pointer will be unused, but there
253 // will be a pending Web UI associated with the navigation. 257 // will be a pending Web UI associated with the navigation.
254 RenderViewHost* pending_render_view_host_; 258 RenderViewHost* pending_render_view_host_;
255 scoped_ptr<WebUI> pending_web_ui_; 259 scoped_ptr<WebUI> pending_web_ui_;
256 260
261 // A map of site instance ID to swapped out RenderViewHosts.
262 typedef base::hash_map<int32, RenderViewHost*> RenderViewHostMap;
263 RenderViewHostMap swapped_out_hosts_;
264
257 // The intersitial page currently shown if any, not own by this class 265 // The intersitial page currently shown if any, not own by this class
258 // (the InterstitialPage is self-owned, it deletes itself when hidden). 266 // (the InterstitialPage is self-owned, it deletes itself when hidden).
259 InterstitialPage* interstitial_page_; 267 InterstitialPage* interstitial_page_;
260 268
261 NotificationRegistrar registrar_; 269 NotificationRegistrar registrar_;
262 270
263 DISALLOW_COPY_AND_ASSIGN(RenderViewHostManager); 271 DISALLOW_COPY_AND_ASSIGN(RenderViewHostManager);
264 }; 272 };
265 273
266 // The "details" for a NOTIFY_RENDER_VIEW_HOST_CHANGED notification. The old 274 // The "details" for a NOTIFY_RENDER_VIEW_HOST_CHANGED notification. The old
267 // host can be NULL when the first RenderViewHost is set. 275 // host can be NULL when the first RenderViewHost is set.
268 struct RenderViewHostSwitchedDetails { 276 struct RenderViewHostSwitchedDetails {
269 RenderViewHost* old_host; 277 RenderViewHost* old_host;
270 RenderViewHost* new_host; 278 RenderViewHost* new_host;
271 }; 279 };
272 280
273 #endif // CONTENT_BROWSER_TAB_CONTENTS_RENDER_VIEW_HOST_MANAGER_H_ 281 #endif // CONTENT_BROWSER_TAB_CONTENTS_RENDER_VIEW_HOST_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698