OLD | NEW |
| (Empty) |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "content/browser/frame_host/render_frame_proxy_host.h" | |
6 | |
7 #include "content/browser/frame_host/render_frame_host_impl.h" | |
8 #include "content/browser/site_instance_impl.h" | |
9 | |
10 namespace content { | |
11 | |
12 RenderFrameProxyHost::RenderFrameProxyHost( | |
13 scoped_ptr<RenderFrameHostImpl> render_frame_host) | |
14 : site_instance_(render_frame_host->GetSiteInstance()), | |
15 render_frame_host_(render_frame_host.Pass()) {} | |
16 | |
17 RenderFrameProxyHost::~RenderFrameProxyHost() {} | |
18 | |
19 } // namespace content | |
OLD | NEW |