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

Side by Side Diff: content/public/test/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: version that doesn't expose RenderViewImpl in public API 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.
jam 2012/11/08 20:37:06 nit: get rid of "content_" in the filename, it's a
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_TEST_CONTENT_LAYOUTTEST_SUPPORT_H_
6 #define CONTENT_PUBLIC_TEST_CONTENT_LAYOUTTEST_SUPPORT_H_
7
8 #include "base/callback_forward.h"
9 #include "content/common/content_export.h"
10
11 namespace WebTestRunner {
12 class WebTestProxyBase;
13 }
14
15 namespace content {
16
17 // Enable injecting of a WebTestProxy between WebViews and RenderViews.
18 // |callback| is invoked with a pointer to WebTestProxyBase for each created
19 // WebTestProxy.
20 CONTENT_EXPORT void EnableWebTestProxyCreation(
21 const base::Callback<void(WebTestRunner::WebTestProxyBase*)>& callback);
22
23 } // namespace content
24
25 #endif // CONTENT_PUBLIC_TEST_CONTENT_LAYOUTTEST_SUPPORT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698