Chromium Code Reviews| 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 b9d8592afc815b46d94c5745e872577b45505fce..5578663888cd5261e6e54b037f0385b245ced7e3 100644 |
| --- a/content/browser/web_contents/web_contents_impl.cc |
| +++ b/content/browser/web_contents/web_contents_impl.cc |
| @@ -286,6 +286,32 @@ WebContentsImpl::ColorChooserInfo::ColorChooserInfo(int render_process_id, |
| WebContentsImpl::ColorChooserInfo::~ColorChooserInfo() { |
| } |
| +// WebContentsImpl::WebContentsTreeNode ---------------------------------------- |
| +WebContentsImpl::WebContentsTreeNode::WebContentsTreeNode() |
| + : outer_web_contents_(nullptr) { |
| +} |
| + |
| +WebContentsImpl::WebContentsTreeNode::~WebContentsTreeNode() { |
| + // Remove child pointers from our parent. |
|
Charlie Reis
2015/06/02 18:19:14
nit: pointer
lazyboy
2015/06/02 20:15:21
Done.
|
| + if (outer_web_contents_) { |
| + ChildrenList& child_ptrs_in_parent = |
| + outer_web_contents_->node_.inner_web_contents_tree_nodes_; |
| + ChildrenList::iterator iter = child_ptrs_in_parent.find(this); |
| + DCHECK(iter != child_ptrs_in_parent.end()); |
| + child_ptrs_in_parent.erase(this); |
| + } |
| + |
| + // Remove parent pointers from our children. |
|
Charlie Reis
2015/06/02 18:19:14
Wouldn't this leak all the children? Seems like w
lazyboy
2015/06/02 20:15:21
Right now in <webview> use case, children WebConte
|
| + for (WebContentsTreeNode* child : inner_web_contents_tree_nodes_) |
| + child->outer_web_contents_ = nullptr; |
| +} |
| + |
| +void WebContentsImpl::WebContentsTreeNode::SetOuterWebContents( |
| + WebContentsImpl* outer_web_contents) { |
| + outer_web_contents_ = outer_web_contents; |
| + outer_web_contents_->node_.inner_web_contents_tree_nodes_.insert(this); |
| +} |
| + |
| // WebContentsImpl ------------------------------------------------------------- |
| WebContentsImpl::WebContentsImpl(BrowserContext* browser_context, |
| @@ -1157,6 +1183,38 @@ void WebContentsImpl::DispatchBeforeUnload(bool for_cross_site_transition) { |
| GetMainFrame()->DispatchBeforeUnload(for_cross_site_transition); |
| } |
| +void WebContentsImpl::AttachToOuterWebContentsFrame( |
| + WebContents* outer_web_contents, |
| + RenderFrameHost* outer_contents_frame) { |
| + CHECK(base::CommandLine::ForCurrentProcess()->HasSwitch( |
| + switches::kSitePerProcess)); |
| + // Create a link to our outer WebContents. |
| + node_.SetOuterWebContents(static_cast<WebContentsImpl*>(outer_web_contents)); |
| + |
| + DCHECK(outer_contents_frame); |
| + |
| + // Create a swapped out RVH and a proxy in our render manager, pointing |
| + // to the SiteInstance of the outer WebContents. The swapped out RVH will be |
| + // used to send postMessage to the inner WebContents. |
| + // TODO(lazyboy): Use RenderFrameHostManager::CreateRenderFrameProxy() once |
| + // we can a proxy without swapped out RF. |
|
Charlie Reis
2015/06/02 18:19:14
nit: can what?
lazyboy
2015/06/02 20:15:21
Create.
Done.
|
| + int proxy_to_outer_web_contents_routing_id = |
| + GetRenderManager()->CreateOuterDelegateProxy( |
| + outer_contents_frame->GetSiteInstance()); |
| + |
| + // Swap the outer WebContents's initial frame for the inner WebContents 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*>(outer_contents_frame) |
| + ->frame_tree_node() |
| + ->render_manager() |
| + ->SwapFrameWithProxy(proxy_to_outer_web_contents_routing_id); |
| + |
| + GetRenderManager()->SetRWHViewForInnerContents( |
| + GetRenderManager()->GetRenderWidgetHostView()); |
| +} |
| + |
| void WebContentsImpl::Stop() { |
| GetRenderManager()->Stop(); |
| FOR_EACH_OBSERVER(WebContentsObserver, observers_, NavigationStopped()); |
| @@ -1229,7 +1287,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_)); |
| @@ -1538,6 +1598,14 @@ 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 OOPIF-based <webview> |
| + // yet. |
| + 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. |
| @@ -4175,7 +4243,11 @@ 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; |
| @@ -4319,6 +4391,16 @@ bool WebContentsImpl::IsHidden() { |
| return capturer_count_ == 0 && !should_normally_be_visible_; |
| } |
| +int WebContentsImpl::GetOuterDelegateFrameTreeNodeID() { |
| + if (node_.outer_web_contents()) { |
| + return node_.outer_web_contents() |
| + ->GetFrameTree() |
| + ->root() |
| + ->frame_tree_node_id(); |
| + } |
| + return -1; |
| +} |
| + |
| RenderFrameHostManager* WebContentsImpl::GetRenderManager() const { |
| return frame_tree_.root()->render_manager(); |
| } |
| @@ -4329,6 +4411,7 @@ BrowserPluginGuest* WebContentsImpl::GetBrowserPluginGuest() const { |
| void WebContentsImpl::SetBrowserPluginGuest(BrowserPluginGuest* guest) { |
| CHECK(!browser_plugin_guest_); |
| + CHECK(guest); |
| browser_plugin_guest_.reset(guest); |
| } |