| 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 | |
| 35 namespace ui { | 31 namespace ui { |
| 36 class ScopedOleInitializer; | 32 class ScopedOleInitializer; |
| 37 } | 33 } |
| 38 | 34 |
| 39 namespace content { | 35 namespace content { |
| 40 | 36 |
| 41 class BrowserContext; | 37 class BrowserContext; |
| 42 class ContentBrowserSanityChecker; | 38 class ContentBrowserSanityChecker; |
| 43 class MockGpuChannelEstablishFactory; | 39 class MockGpuChannelEstablishFactory; |
| 44 class MockRenderProcessHost; | 40 class MockRenderProcessHost; |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 | 271 |
| 276 std::unique_ptr<WebContents> contents_; | 272 std::unique_ptr<WebContents> contents_; |
| 277 #if defined(OS_WIN) | 273 #if defined(OS_WIN) |
| 278 std::unique_ptr<ui::ScopedOleInitializer> ole_initializer_; | 274 std::unique_ptr<ui::ScopedOleInitializer> ole_initializer_; |
| 279 #endif | 275 #endif |
| 280 #if defined(USE_AURA) | 276 #if defined(USE_AURA) |
| 281 std::unique_ptr<aura::test::AuraTestHelper> aura_test_helper_; | 277 std::unique_ptr<aura::test::AuraTestHelper> aura_test_helper_; |
| 282 #endif | 278 #endif |
| 283 #if defined(OS_ANDROID) | 279 #if defined(OS_ANDROID) |
| 284 std::unique_ptr<MockGpuChannelEstablishFactory> gpu_channel_factory_; | 280 std::unique_ptr<MockGpuChannelEstablishFactory> gpu_channel_factory_; |
| 285 std::unique_ptr<display::Screen> screen_; | |
| 286 #endif | 281 #endif |
| 287 RenderViewHostTestEnabler rvh_test_enabler_; | 282 RenderViewHostTestEnabler rvh_test_enabler_; |
| 288 | 283 |
| 289 DISALLOW_COPY_AND_ASSIGN(RenderViewHostTestHarness); | 284 DISALLOW_COPY_AND_ASSIGN(RenderViewHostTestHarness); |
| 290 }; | 285 }; |
| 291 | 286 |
| 292 } // namespace content | 287 } // namespace content |
| 293 | 288 |
| 294 #endif // CONTENT_PUBLIC_TEST_TEST_RENDERER_HOST_H_ | 289 #endif // CONTENT_PUBLIC_TEST_TEST_RENDERER_HOST_H_ |
| OLD | NEW |