blob: 18055d67d11a922e77c61ce285b0233d2e4e6e7a [file] [log] [blame]
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_BROWSER_FRAME_HOST_TEST_RENDER_FRAME_HOST_H_
#define CONTENT_BROWSER_FRAME_HOST_TEST_RENDER_FRAME_HOST_H_
#include "base/basictypes.h"
#include "content/browser/frame_host/render_frame_host_impl.h"
namespace content {
class TestRenderFrameHost : public RenderFrameHostImpl {
public:
TestRenderFrameHost(RenderViewHostImpl* render_view_host,
FrameTree* frame_tree,
int routing_id,
bool is_swapped_out);
virtual ~TestRenderFrameHost();
// TODO(nick): As necessary for testing, override behavior of RenderFrameHost
// here.
private:
DISALLOW_COPY_AND_ASSIGN(TestRenderFrameHost);
};
} // namespace content
#endif // CONTENT_BROWSER_FRAME_HOST_TEST_RENDER_FRAME_HOST_H_