| 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 18 matching lines...) Expand all Loading... |
| 29 } | 29 } |
| 30 | 30 |
| 31 namespace ui { | 31 namespace ui { |
| 32 class ScopedOleInitializer; | 32 class ScopedOleInitializer; |
| 33 } | 33 } |
| 34 | 34 |
| 35 namespace content { | 35 namespace content { |
| 36 | 36 |
| 37 class BrowserContext; | 37 class BrowserContext; |
| 38 class ContentBrowserSanityChecker; | 38 class ContentBrowserSanityChecker; |
| 39 class MockGpuChannelEstablishFactory; | |
| 40 class MockRenderProcessHost; | 39 class MockRenderProcessHost; |
| 41 class MockRenderProcessHostFactory; | 40 class MockRenderProcessHostFactory; |
| 42 class NavigationController; | 41 class NavigationController; |
| 43 class RenderProcessHostFactory; | 42 class RenderProcessHostFactory; |
| 44 class RenderViewHostDelegate; | 43 class RenderViewHostDelegate; |
| 45 class TestRenderFrameHostFactory; | 44 class TestRenderFrameHostFactory; |
| 46 class TestRenderViewHostFactory; | 45 class TestRenderViewHostFactory; |
| 47 class WebContents; | 46 class WebContents; |
| 48 struct WebPreferences; | 47 struct WebPreferences; |
| 49 | 48 |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 | 274 |
| 276 std::unique_ptr<BrowserContext> browser_context_; | 275 std::unique_ptr<BrowserContext> browser_context_; |
| 277 | 276 |
| 278 std::unique_ptr<WebContents> contents_; | 277 std::unique_ptr<WebContents> contents_; |
| 279 #if defined(OS_WIN) | 278 #if defined(OS_WIN) |
| 280 std::unique_ptr<ui::ScopedOleInitializer> ole_initializer_; | 279 std::unique_ptr<ui::ScopedOleInitializer> ole_initializer_; |
| 281 #endif | 280 #endif |
| 282 #if defined(USE_AURA) | 281 #if defined(USE_AURA) |
| 283 std::unique_ptr<aura::test::AuraTestHelper> aura_test_helper_; | 282 std::unique_ptr<aura::test::AuraTestHelper> aura_test_helper_; |
| 284 #endif | 283 #endif |
| 285 #if defined(OS_ANDROID) | |
| 286 std::unique_ptr<MockGpuChannelEstablishFactory> gpu_channel_factory_; | |
| 287 #endif | |
| 288 RenderViewHostTestEnabler rvh_test_enabler_; | 284 RenderViewHostTestEnabler rvh_test_enabler_; |
| 289 | 285 |
| 290 DISALLOW_COPY_AND_ASSIGN(RenderViewHostTestHarness); | 286 DISALLOW_COPY_AND_ASSIGN(RenderViewHostTestHarness); |
| 291 }; | 287 }; |
| 292 | 288 |
| 293 } // namespace content | 289 } // namespace content |
| 294 | 290 |
| 295 #endif // CONTENT_PUBLIC_TEST_TEST_RENDERER_HOST_H_ | 291 #endif // CONTENT_PUBLIC_TEST_TEST_RENDERER_HOST_H_ |
| OLD | NEW |