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

Unified Diff: content/browser/web_contents/web_contents_impl.cc

Issue 972313002: Make <webview> use out-of-process iframe architecture. (Closed) Base URL: ssh://saopaulo.wat/mnt/dev/shared/src@testoopif2z-better-chrome
Patch Set: add basic postMessage test Created 5 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/web_contents/web_contents_impl.cc
diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc
index d8bdf9246a66feaf4b9f3d45b643c5d255a49267..5a6ebf64a87d2dc5f26c3b200da92bd740df911a 100644
--- a/content/browser/web_contents/web_contents_impl.cc
+++ b/content/browser/web_contents/web_contents_impl.cc
@@ -286,6 +286,17 @@ WebContentsImpl::ColorChooserInfo::ColorChooserInfo(int render_process_id,
WebContentsImpl::ColorChooserInfo::~ColorChooserInfo() {
}
+// WebContentsImpl::WebContentsTreeNode ----------------------------------------
+WebContentsImpl::WebContentsTreeNode::WebContentsTreeNode()
+ : parent_web_contents_(nullptr) {
+}
+
+WebContentsImpl::WebContentsTreeNode::~WebContentsTreeNode() {
+ // TODO(lazyboy): Enforce that a child WebContentsTreeNode gets deleted
+ // before its parent. Otherwise the child could have a stale pointer to its
+ // parent WebContents, risking a use-after-free.
+}
+
// WebContentsImpl -------------------------------------------------------------
WebContentsImpl::WebContentsImpl(BrowserContext* browser_context,
@@ -1137,6 +1148,32 @@ void WebContentsImpl::DispatchBeforeUnload(bool for_cross_site_transition) {
GetMainFrame()->DispatchBeforeUnload(for_cross_site_transition);
}
+void WebContentsImpl::AttachToEmbedderFrame(WebContents* embedder_web_contents,
+ RenderFrameHost* embedder_frame) {
+ CHECK(base::CommandLine::ForCurrentProcess()->HasSwitch(
+ switches::kSitePerProcess));
+ // Create a link to our parent WebContents.
+ node_.set_parent_web_contents(
+ static_cast<WebContentsImpl*>(embedder_web_contents));
+
+ DCHECK(embedder_frame);
+
+ // Create a swapped out RVH and a proxy in our render manager, pointing
+ // to the embedder's SiteInstance. The swapped out RVH will be used to send
+ // postMessage to guest.
+ int proxy_to_embedder_routing_id = GetRenderManager()->CreateEmbedderProxy(
+ embedder_frame->GetSiteInstance());
+
+ // Swap the embedder's initial frame for the guest with the proxy
+ // we've created above.
+ // The proxy has a CPFC and it uses the swapped out RV as its RenderWidget,
+ // which gives us input and rendering.
+ static_cast<RenderFrameHostImpl*>(embedder_frame)
+ ->frame_tree_node()
+ ->render_manager()
+ ->ReplaceWithGuestProxy(proxy_to_embedder_routing_id);
+}
+
void WebContentsImpl::Stop() {
GetRenderManager()->Stop();
FOR_EACH_OBSERVER(WebContentsObserver, observers_, NavigationStopped());
@@ -1209,7 +1246,9 @@ void WebContentsImpl::Init(const WebContents::CreateParams& params) {
WebContentsViewDelegate* delegate =
GetContentClient()->browser()->GetWebContentsViewDelegate(this);
- if (browser_plugin_guest_) {
+ if (browser_plugin_guest_ &&
+ !base::CommandLine::ForCurrentProcess()->HasSwitch(
+ switches::kSitePerProcess)) {
scoped_ptr<WebContentsView> platform_view(CreateWebContentsView(
this, delegate, &render_view_host_delegate_view_));
@@ -1518,6 +1557,13 @@ void WebContentsImpl::CreateNewWindow(
// SiteInstance in its own BrowsingInstance.
bool is_guest = BrowserPluginGuest::IsGuest(this);
+ if (is_guest &&
+ base::CommandLine::ForCurrentProcess()->HasSwitch(
+ switches::kSitePerProcess)) {
+ // TODO(lazyboy): CreateNewWindow doesn't work for <webview> yet.
Charlie Reis 2015/05/19 07:12:31 for OOPIF-based <webview> yet
lazyboy 2015/05/21 23:23:47 Done.
+ NOTREACHED();
+ }
+
// If the opener is to be suppressed, the new window can be in any process.
// Since routing ids are process specific, we must not have one passed in
// as argument here.
@@ -1737,7 +1783,9 @@ void WebContentsImpl::ShowCreatedWidget(int route_id,
RenderWidgetHostView* view = NULL;
BrowserPluginGuest* guest = GetBrowserPluginGuest();
- if (guest && guest->embedder_web_contents()) {
+ if (guest && guest->embedder_web_contents() &&
+ base::CommandLine::ForCurrentProcess()->HasSwitch(
+ switches::kSitePerProcess)) {
view = guest->embedder_web_contents()->GetRenderWidgetHostView();
} else {
view = GetRenderWidgetHostView();
@@ -4170,10 +4218,16 @@ bool WebContentsImpl::CreateRenderViewForRenderManager(
// until RenderWidgetHost is attached to RenderFrameHost. We need to special
// case this because RWH is still a base class of RenderViewHost, and child
// frame RWHVs are unique in that they do not have their own WebContents.
- if (!for_main_frame_navigation) {
+ bool is_guest_in_site_per_process =
+ !!browser_plugin_guest_.get() &&
+ base::CommandLine::ForCurrentProcess()->HasSwitch(
+ switches::kSitePerProcess);
+ if (!for_main_frame_navigation || is_guest_in_site_per_process) {
RenderWidgetHostViewChildFrame* rwh_view_child =
new RenderWidgetHostViewChildFrame(render_view_host);
rwh_view = rwh_view_child;
+ if (is_guest_in_site_per_process)
+ GetRenderManager()->SetGuestRWHView(rwh_view_child);
} else {
rwh_view = view_->CreateViewForWidget(render_view_host, false);
}
@@ -4314,6 +4368,16 @@ bool WebContentsImpl::IsHidden() {
return capturer_count_ == 0 && !should_normally_be_visible_;
}
+int64 WebContentsImpl::GetEmbedderFrameTreeNodeID() {
+ if (node_.parent_web_contents()) {
+ return node_.parent_web_contents()
+ ->GetFrameTree()
+ ->root()
+ ->frame_tree_node_id();
+ }
+ return -1;
+}
+
RenderFrameHostManager* WebContentsImpl::GetRenderManager() const {
return frame_tree_.root()->render_manager();
}
@@ -4324,6 +4388,7 @@ BrowserPluginGuest* WebContentsImpl::GetBrowserPluginGuest() const {
void WebContentsImpl::SetBrowserPluginGuest(BrowserPluginGuest* guest) {
CHECK(!browser_plugin_guest_);
+ CHECK(guest);
browser_plugin_guest_.reset(guest);
}

Powered by Google App Engine
This is Rietveld 408576698