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.
5 #include "content/public/test/web_contents_tester.h"
7 #include "content/test/test_web_contents.h"
13 // The two subclasses here are instantiated via the deprecated
14 // CreateWebContentsFor... factories below.
19 WebContentsTester
* WebContentsTester::For(WebContents
* contents
) {
20 return static_cast<TestWebContents
*>(contents
);
24 WebContents
* WebContentsTester::CreateTestWebContents(
25 BrowserContext
* browser_context
,
26 SiteInstance
* instance
) {
27 return TestWebContents::Create(browser_context
, instance
);
31 } // namespace content