OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_PUBLIC_TEST_TEST_RENDERER_HOST_H_ | 5 #ifndef CONTENT_PUBLIC_TEST_TEST_RENDERER_HOST_H_ |
6 #define CONTENT_PUBLIC_TEST_TEST_RENDERER_HOST_H_ | 6 #define CONTENT_PUBLIC_TEST_TEST_RENDERER_HOST_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
(...skipping 10 matching lines...) Expand all Loading... |
21 #if defined(USE_AURA) | 21 #if defined(USE_AURA) |
22 #include "ui/aura/test/aura_test_helper.h" | 22 #include "ui/aura/test/aura_test_helper.h" |
23 #endif | 23 #endif |
24 | 24 |
25 namespace aura { | 25 namespace aura { |
26 namespace test { | 26 namespace test { |
27 class AuraTestHelper; | 27 class AuraTestHelper; |
28 } | 28 } |
29 } | 29 } |
30 | 30 |
| 31 namespace display { |
| 32 class Screen; |
| 33 } |
| 34 |
31 namespace ui { | 35 namespace ui { |
32 class ScopedOleInitializer; | 36 class ScopedOleInitializer; |
33 } | 37 } |
34 | 38 |
35 namespace content { | 39 namespace content { |
36 | 40 |
37 class BrowserContext; | 41 class BrowserContext; |
38 class ContentBrowserSanityChecker; | 42 class ContentBrowserSanityChecker; |
39 class MockGpuChannelEstablishFactory; | 43 class MockGpuChannelEstablishFactory; |
40 class MockRenderProcessHost; | 44 class MockRenderProcessHost; |
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
271 | 275 |
272 std::unique_ptr<WebContents> contents_; | 276 std::unique_ptr<WebContents> contents_; |
273 #if defined(OS_WIN) | 277 #if defined(OS_WIN) |
274 std::unique_ptr<ui::ScopedOleInitializer> ole_initializer_; | 278 std::unique_ptr<ui::ScopedOleInitializer> ole_initializer_; |
275 #endif | 279 #endif |
276 #if defined(USE_AURA) | 280 #if defined(USE_AURA) |
277 std::unique_ptr<aura::test::AuraTestHelper> aura_test_helper_; | 281 std::unique_ptr<aura::test::AuraTestHelper> aura_test_helper_; |
278 #endif | 282 #endif |
279 #if defined(OS_ANDROID) | 283 #if defined(OS_ANDROID) |
280 std::unique_ptr<MockGpuChannelEstablishFactory> gpu_channel_factory_; | 284 std::unique_ptr<MockGpuChannelEstablishFactory> gpu_channel_factory_; |
| 285 std::unique_ptr<display::Screen> screen_; |
281 #endif | 286 #endif |
282 RenderViewHostTestEnabler rvh_test_enabler_; | 287 RenderViewHostTestEnabler rvh_test_enabler_; |
283 | 288 |
284 DISALLOW_COPY_AND_ASSIGN(RenderViewHostTestHarness); | 289 DISALLOW_COPY_AND_ASSIGN(RenderViewHostTestHarness); |
285 }; | 290 }; |
286 | 291 |
287 } // namespace content | 292 } // namespace content |
288 | 293 |
289 #endif // CONTENT_PUBLIC_TEST_TEST_RENDERER_HOST_H_ | 294 #endif // CONTENT_PUBLIC_TEST_TEST_RENDERER_HOST_H_ |
OLD | NEW |