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

Unified 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, 8 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..3679ed5e4e74f5ead88d954729fbe2a62b01eb3c 100644
--- a/content/browser/tab_contents/render_view_host_manager.h
+++ b/content/browser/tab_contents/render_view_host_manager.h
@@ -11,6 +11,7 @@
#include "base/memory/scoped_ptr.h"
#include "content/browser/renderer_host/render_view_host_delegate.h"
#include "content/common/notification_registrar.h"
+#include "content/browser/site_instance.h"
class WebUI;
class InterstitialPage;
@@ -19,7 +20,6 @@ class NavigationEntry;
class Profile;
class RenderWidgetHostView;
class RenderViewHost;
-class SiteInstance;
// Manages RenderViewHosts for a TabContents. Normally there is only one and
// it is easy to do. But we can also have transitions of processes (and hence
@@ -179,6 +179,10 @@ class RenderViewHostManager
// deleted.
void SwapInRenderViewHost(RenderViewHost* rvh);
+ // Returns whether the given RenderViewHost is on the list of swapped out
+ // RenderViewHosts.
+ bool IsSwappedOut(RenderViewHost* rvh);
+
private:
friend class TestTabContents;
friend class RenderViewHostManagerTest;
@@ -254,6 +258,10 @@ class RenderViewHostManager
RenderViewHost* pending_render_view_host_;
scoped_ptr<WebUI> pending_web_ui_;
+ // A map of site instance ID to swapped out RenderViewHosts.
+ typedef base::hash_map<int32, RenderViewHost*> RenderViewHostMap;
+ RenderViewHostMap swapped_out_hosts_;
+
// The intersitial page currently shown if any, not own by this class
// (the InterstitialPage is self-owned, it deletes itself when hidden).
InterstitialPage* interstitial_page_;

Powered by Google App Engine
This is Rietveld 408576698