Chromium Code Reviews| OLD | NEW |
|---|---|
| (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_ | |
| OLD | NEW |