web_contents_tester.cc revision 2a99a7e74a7f215066514fe81d2bfa6639d9eddd
1// Copyright (c) 2012 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/public/test/web_contents_tester.h"
6
7#include "content/test/test_web_contents.h"
8
9namespace content {
10
11namespace {
12
13// The two subclasses here are instantiated via the deprecated
14// CreateWebContentsFor... factories below.
15
16}  // namespace
17
18// static
19WebContentsTester* WebContentsTester::For(WebContents* contents) {
20  return static_cast<TestWebContents*>(contents);
21}
22
23// static
24WebContents* WebContentsTester::CreateTestWebContents(
25    BrowserContext* browser_context,
26    SiteInstance* instance) {
27  return TestWebContents::Create(browser_context, instance);
28}
29
30// static
31}  // namespace content
32