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

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

Issue 2514633002: Revert of Android: support multiple displays on C++ side (Closed)
Patch Set: Created 4 years, 1 month 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
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 10 matching lines...) Expand all
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
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_
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_widget_host_unittest.cc ('k') | content/public/test/test_renderer_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698