OLD | NEW |
---|---|
(Empty) | |
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 #ifndef CONTENT_PUBLIC_LAYOUTTEST_SUPPORT_CONTENT_LAYOUTTEST_SUPPORT_H_ | |
6 #define CONTENT_PUBLIC_LAYOUTTEST_SUPPORT_CONTENT_LAYOUTTEST_SUPPORT_H_ | |
7 | |
8 #include "content/common/content_export.h" | |
9 | |
10 namespace WebTestRunner { | |
11 class WebTestProxyBase; | |
12 } | |
13 | |
14 namespace content { | |
15 | |
16 class RenderViewImpl; | |
17 struct RenderViewImplParams; | |
18 | |
19 // Create a RenderViewImpl instance that is wrapped in the WebTestProxy | |
20 // template. |params| is passed to RenderViewImpl's constructor. If |base| is | |
21 // non-NULL, it will be set to a pointer to the WebTestProxy instance. | |
22 CONTENT_EXPORT RenderViewImpl* CreateWebTestProxy( | |
jam
2012/11/08 17:18:08
so webkit code now knows about RenderViewImpl? I n
| |
23 RenderViewImplParams* params, | |
24 WebTestRunner::WebTestProxyBase** base); | |
25 | |
26 } // namespace content | |
27 | |
28 #endif // CONTENT_PUBLIC_LAYOUTTEST_SUPPORT_CONTENT_LAYOUTTEST_SUPPORT_H_ | |
OLD | NEW |