render_frame_proxy_host.cc revision a02191e04bc25c4935f804f2c080ae28663d096d
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
10namespace content {
11
12RenderFrameProxyHost::RenderFrameProxyHost(
13    scoped_ptr<RenderFrameHostImpl> render_frame_host)
14    : site_instance_(render_frame_host->GetSiteInstance()),
15      render_frame_host_(render_frame_host.Pass()) {}
16
17RenderFrameProxyHost::~RenderFrameProxyHost() {}
18
19}  // namespace content
20