| Index: content/browser/frame_host/render_frame_host_factory.cc
|
| diff --git a/content/browser/frame_host/render_frame_host_factory.cc b/content/browser/frame_host/render_frame_host_factory.cc
|
| index 1a1daa2885d65165d65152cfbc97a921acbd04bd..4262c1c7eb26741d8c261e67caf592176c2752f5 100644
|
| --- a/content/browser/frame_host/render_frame_host_factory.cc
|
| +++ b/content/browser/frame_host/render_frame_host_factory.cc
|
| @@ -5,6 +5,7 @@
|
| #include "content/browser/frame_host/render_frame_host_factory.h"
|
|
|
| #include "base/logging.h"
|
| +#include "content/browser/frame_host/frame_tree_node.h"
|
| #include "content/browser/frame_host/render_frame_host_impl.h"
|
|
|
| namespace content {
|
| @@ -17,17 +18,20 @@ scoped_ptr<RenderFrameHostImpl> RenderFrameHostFactory::Create(
|
| RenderViewHostImpl* render_view_host,
|
| RenderFrameHostDelegate* delegate,
|
| FrameTree* frame_tree,
|
| + FrameTreeNode* frame_tree_node,
|
| int routing_id,
|
| bool is_swapped_out) {
|
| if (factory_) {
|
| return factory_->CreateRenderFrameHost(render_view_host,
|
| delegate,
|
| frame_tree,
|
| + frame_tree_node,
|
| routing_id,
|
| is_swapped_out).Pass();
|
| }
|
| return make_scoped_ptr(new RenderFrameHostImpl(
|
| - render_view_host, delegate, frame_tree, routing_id, is_swapped_out));
|
| + render_view_host, delegate, frame_tree, frame_tree_node, routing_id,
|
| + is_swapped_out));
|
| }
|
|
|
| // static
|
|
|