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 |
| 9 namespace content { |
| 10 |
| 11 RenderFrameProxyHost::RenderFrameProxyHost( |
| 12 scoped_ptr<RenderFrameHostImpl> render_frame_host) |
| 13 : render_frame_host_(render_frame_host.Pass()) {} |
| 14 |
| 15 RenderFrameProxyHost::~RenderFrameProxyHost() {} |
| 16 |
| 17 } // namespace content |
OLD | NEW |