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

Side by Side Diff: content/public/test/test_renderer_host.h

Issue 2297933002: blimp: Set up the CompositorDependencies for blimp in Chrome. (Closed)
Patch Set: retry gpu process failures after crbug.com/643282 Created 4 years, 3 months 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
« no previous file with comments | « content/content_tests.gypi ('k') | content/public/test/test_renderer_host.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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;
39 class MockRenderProcessHost; 40 class MockRenderProcessHost;
40 class MockRenderProcessHostFactory; 41 class MockRenderProcessHostFactory;
41 class NavigationController; 42 class NavigationController;
42 class RenderProcessHostFactory; 43 class RenderProcessHostFactory;
43 class RenderViewHostDelegate; 44 class RenderViewHostDelegate;
44 class TestRenderFrameHostFactory; 45 class TestRenderFrameHostFactory;
45 class TestRenderViewHostFactory; 46 class TestRenderViewHostFactory;
46 class WebContents; 47 class WebContents;
47 struct WebPreferences; 48 struct WebPreferences;
48 49
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 270
270 std::unique_ptr<BrowserContext> browser_context_; 271 std::unique_ptr<BrowserContext> browser_context_;
271 272
272 std::unique_ptr<WebContents> contents_; 273 std::unique_ptr<WebContents> contents_;
273 #if defined(OS_WIN) 274 #if defined(OS_WIN)
274 std::unique_ptr<ui::ScopedOleInitializer> ole_initializer_; 275 std::unique_ptr<ui::ScopedOleInitializer> ole_initializer_;
275 #endif 276 #endif
276 #if defined(USE_AURA) 277 #if defined(USE_AURA)
277 std::unique_ptr<aura::test::AuraTestHelper> aura_test_helper_; 278 std::unique_ptr<aura::test::AuraTestHelper> aura_test_helper_;
278 #endif 279 #endif
280 #if defined(OS_ANDROID)
281 std::unique_ptr<MockGpuChannelEstablishFactory> gpu_channel_factory_;
282 #endif
279 RenderViewHostTestEnabler rvh_test_enabler_; 283 RenderViewHostTestEnabler rvh_test_enabler_;
280 284
281 DISALLOW_COPY_AND_ASSIGN(RenderViewHostTestHarness); 285 DISALLOW_COPY_AND_ASSIGN(RenderViewHostTestHarness);
282 }; 286 };
283 287
284 } // namespace content 288 } // namespace content
285 289
286 #endif // CONTENT_PUBLIC_TEST_TEST_RENDERER_HOST_H_ 290 #endif // CONTENT_PUBLIC_TEST_TEST_RENDERER_HOST_H_
OLDNEW
« no previous file with comments | « content/content_tests.gypi ('k') | content/public/test/test_renderer_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698