Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1608)

Side by Side Diff: content/public/layouttest_support/content_layouttest_support.h

Issue 11362161: Use the WebTestProxy for layout tests in content_shell (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698