Home | History | Annotate | Download | only in test
      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 
      9 namespace content {
     10 
     11 namespace {
     12 
     13 // The two subclasses here are instantiated via the deprecated
     14 // CreateWebContentsFor... factories below.
     15 
     16 }  // namespace
     17 
     18 // static
     19 WebContentsTester* WebContentsTester::For(WebContents* contents) {
     20   return static_cast<TestWebContents*>(contents);
     21 }
     22 
     23 // static
     24 WebContents* WebContentsTester::CreateTestWebContents(
     25     BrowserContext* browser_context,
     26     SiteInstance* instance) {
     27   return TestWebContents::Create(browser_context, instance);
     28 }
     29 
     30 // static
     31 }  // namespace content
     32