| 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 1678595a148b3c057df6e94ac3deafac3c1b54fb..2afd15b20ab1a29e03727347f7ea4fafb82688b5 100644
|
| --- a/content/browser/web_contents/web_contents_impl.cc
|
| +++ b/content/browser/web_contents/web_contents_impl.cc
|
| @@ -4402,16 +4402,17 @@ bool WebContentsImpl::CreateRenderViewForRenderManager(
|
|
|
| bool WebContentsImpl::CreateRenderFrameForRenderManager(
|
| RenderFrameHost* render_frame_host,
|
| + int proxy_routing_id,
|
| + int opener_routing_id,
|
| int parent_routing_id,
|
| - int previous_sibling_routing_id,
|
| - int proxy_routing_id) {
|
| + int previous_sibling_routing_id) {
|
| TRACE_EVENT0("browser,navigation",
|
| "WebContentsImpl::CreateRenderFrameForRenderManager");
|
|
|
| RenderFrameHostImpl* rfh =
|
| static_cast<RenderFrameHostImpl*>(render_frame_host);
|
| - if (!rfh->CreateRenderFrame(parent_routing_id, previous_sibling_routing_id,
|
| - proxy_routing_id))
|
| + if (!rfh->CreateRenderFrame(proxy_routing_id, opener_routing_id,
|
| + parent_routing_id, previous_sibling_routing_id))
|
| return false;
|
|
|
| // TODO(nasko): When RenderWidgetHost is owned by RenderFrameHost, the passed
|
|
|