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

Side by Side Diff: ui/ozone/platform/headless/ozone_platform_headless.cc

Issue 1410123003: Rename "test" ozone platform to "headless" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #include "ui/ozone/platform/test/ozone_platform_test.h" 5 #include "ui/ozone/platform/headless/ozone_platform_headless.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/files/file_path.h" 8 #include "base/files/file_path.h"
9 #include "ui/base/cursor/ozone/bitmap_cursor_factory_ozone.h" 9 #include "ui/base/cursor/ozone/bitmap_cursor_factory_ozone.h"
10 #include "ui/events/ozone/layout/keyboard_layout_engine_manager.h" 10 #include "ui/events/ozone/layout/keyboard_layout_engine_manager.h"
11 #include "ui/events/ozone/layout/stub/stub_keyboard_layout_engine.h" 11 #include "ui/events/ozone/layout/stub/stub_keyboard_layout_engine.h"
12 #include "ui/events/platform/platform_event_source.h" 12 #include "ui/events/platform/platform_event_source.h"
13 #include "ui/ozone/common/native_display_delegate_ozone.h" 13 #include "ui/ozone/common/native_display_delegate_ozone.h"
14 #include "ui/ozone/common/stub_overlay_manager.h" 14 #include "ui/ozone/common/stub_overlay_manager.h"
15 #include "ui/ozone/platform/test/test_surface_factory.h" 15 #include "ui/ozone/platform/headless/headless_surface_factory.h"
16 #include "ui/ozone/platform/test/test_window.h" 16 #include "ui/ozone/platform/headless/headless_window.h"
17 #include "ui/ozone/platform/test/test_window_manager.h" 17 #include "ui/ozone/platform/headless/headless_window_manager.h"
18 #include "ui/ozone/public/cursor_factory_ozone.h" 18 #include "ui/ozone/public/cursor_factory_ozone.h"
19 #include "ui/ozone/public/gpu_platform_support.h" 19 #include "ui/ozone/public/gpu_platform_support.h"
20 #include "ui/ozone/public/gpu_platform_support_host.h" 20 #include "ui/ozone/public/gpu_platform_support_host.h"
21 #include "ui/ozone/public/input_controller.h" 21 #include "ui/ozone/public/input_controller.h"
22 #include "ui/ozone/public/ozone_platform.h" 22 #include "ui/ozone/public/ozone_platform.h"
23 #include "ui/ozone/public/ozone_switches.h" 23 #include "ui/ozone/public/ozone_switches.h"
24 #include "ui/ozone/public/system_input_injector.h" 24 #include "ui/ozone/public/system_input_injector.h"
25 25
26 namespace ui { 26 namespace ui {
27 27
28 namespace { 28 namespace {
29 29
30 // A test implementation of PlatformEventSource that we can instantiate to make 30 // A headless implementation of PlatformEventSource that we can instantiate to
31 // sure that the PlatformEventSource has an instance while in unit tests. 31 // make
32 class TestPlatformEventSource : public ui::PlatformEventSource { 32 // sure that the PlatformEventSource has an instance while in unit headlesss.
Sami 2015/10/26 16:47:07 Unit tests are still unit tests :)
altimin 2015/10/26 17:24:21 My headles-s-s! Done. :)
33 class HeadlessPlatformEventSource : public ui::PlatformEventSource {
33 public: 34 public:
34 TestPlatformEventSource() {} 35 HeadlessPlatformEventSource() {}
35 ~TestPlatformEventSource() override {} 36 ~HeadlessPlatformEventSource() override {}
36 37
37 private: 38 private:
38 DISALLOW_COPY_AND_ASSIGN(TestPlatformEventSource); 39 DISALLOW_COPY_AND_ASSIGN(HeadlessPlatformEventSource);
39 }; 40 };
40 41
41 // OzonePlatform for testing 42 // OzonePlatform for headlessing
Sami 2015/10/26 16:47:07 Hmm :)
altimin 2015/10/26 17:24:21 Done.
42 // 43 //
43 // This platform dumps images to a file for testing purposes. 44 // This platform dumps images to a file for headlessing purposes.
Sami 2015/10/26 16:47:07 Ditto.
altimin 2015/10/26 17:24:21 Done.
44 class OzonePlatformTest : public OzonePlatform { 45 class OzonePlatformHeadless : public OzonePlatform {
45 public: 46 public:
46 OzonePlatformTest(const base::FilePath& dump_file) : file_path_(dump_file) {} 47 OzonePlatformHeadless(const base::FilePath& dump_file)
47 ~OzonePlatformTest() override {} 48 : file_path_(dump_file) {}
49 ~OzonePlatformHeadless() override {}
48 50
49 // OzonePlatform: 51 // OzonePlatform:
50 ui::SurfaceFactoryOzone* GetSurfaceFactoryOzone() override { 52 ui::SurfaceFactoryOzone* GetSurfaceFactoryOzone() override {
51 return surface_factory_.get(); 53 return surface_factory_.get();
52 } 54 }
53 OverlayManagerOzone* GetOverlayManager() override { 55 OverlayManagerOzone* GetOverlayManager() override {
54 return overlay_manager_.get(); 56 return overlay_manager_.get();
55 } 57 }
56 CursorFactoryOzone* GetCursorFactoryOzone() override { 58 CursorFactoryOzone* GetCursorFactoryOzone() override {
57 return cursor_factory_ozone_.get(); 59 return cursor_factory_ozone_.get();
58 } 60 }
59 InputController* GetInputController() override { 61 InputController* GetInputController() override {
60 return input_controller_.get(); 62 return input_controller_.get();
61 } 63 }
62 GpuPlatformSupport* GetGpuPlatformSupport() override { 64 GpuPlatformSupport* GetGpuPlatformSupport() override {
63 return gpu_platform_support_.get(); 65 return gpu_platform_support_.get();
64 } 66 }
65 GpuPlatformSupportHost* GetGpuPlatformSupportHost() override { 67 GpuPlatformSupportHost* GetGpuPlatformSupportHost() override {
66 return gpu_platform_support_host_.get(); 68 return gpu_platform_support_host_.get();
67 } 69 }
68 scoped_ptr<SystemInputInjector> CreateSystemInputInjector() override { 70 scoped_ptr<SystemInputInjector> CreateSystemInputInjector() override {
69 return nullptr; // no input injection support. 71 return nullptr; // no input injection support.
70 } 72 }
71 scoped_ptr<PlatformWindow> CreatePlatformWindow( 73 scoped_ptr<PlatformWindow> CreatePlatformWindow(
72 PlatformWindowDelegate* delegate, 74 PlatformWindowDelegate* delegate,
73 const gfx::Rect& bounds) override { 75 const gfx::Rect& bounds) override {
74 return make_scoped_ptr<PlatformWindow>( 76 return make_scoped_ptr<PlatformWindow>(
75 new TestWindow(delegate, window_manager_.get(), bounds)); 77 new HeadlessWindow(delegate, window_manager_.get(), bounds));
76 } 78 }
77 scoped_ptr<NativeDisplayDelegate> CreateNativeDisplayDelegate() override { 79 scoped_ptr<NativeDisplayDelegate> CreateNativeDisplayDelegate() override {
78 return make_scoped_ptr(new NativeDisplayDelegateOzone()); 80 return make_scoped_ptr(new NativeDisplayDelegateOzone());
79 } 81 }
80 base::ScopedFD OpenClientNativePixmapDevice() const override { 82 base::ScopedFD OpenClientNativePixmapDevice() const override {
81 return base::ScopedFD(); 83 return base::ScopedFD();
82 } 84 }
83 85
84 void InitializeUI() override { 86 void InitializeUI() override {
85 window_manager_.reset(new TestWindowManager(file_path_)); 87 window_manager_.reset(new HeadlessWindowManager(file_path_));
86 window_manager_->Initialize(); 88 window_manager_->Initialize();
87 surface_factory_.reset(new TestSurfaceFactory(window_manager_.get())); 89 surface_factory_.reset(new HeadlessSurfaceFactory(window_manager_.get()));
88 // This unbreaks tests that create their own. 90 // This unbreaks headlesss that create their own.
Sami 2015/10/26 16:47:07 Ditto.
altimin 2015/10/26 17:24:21 Done.
89 if (!PlatformEventSource::GetInstance()) 91 if (!PlatformEventSource::GetInstance())
90 platform_event_source_.reset(new TestPlatformEventSource); 92 platform_event_source_.reset(new HeadlessPlatformEventSource);
91 KeyboardLayoutEngineManager::SetKeyboardLayoutEngine( 93 KeyboardLayoutEngineManager::SetKeyboardLayoutEngine(
92 make_scoped_ptr(new StubKeyboardLayoutEngine())); 94 make_scoped_ptr(new StubKeyboardLayoutEngine()));
93 95
94 overlay_manager_.reset(new StubOverlayManager()); 96 overlay_manager_.reset(new StubOverlayManager());
95 input_controller_ = CreateStubInputController(); 97 input_controller_ = CreateStubInputController();
96 cursor_factory_ozone_.reset(new BitmapCursorFactoryOzone); 98 cursor_factory_ozone_.reset(new BitmapCursorFactoryOzone);
97 gpu_platform_support_host_.reset(CreateStubGpuPlatformSupportHost()); 99 gpu_platform_support_host_.reset(CreateStubGpuPlatformSupportHost());
98 } 100 }
99 101
100 void InitializeGPU() override { 102 void InitializeGPU() override {
101 if (!surface_factory_) 103 if (!surface_factory_)
102 surface_factory_.reset(new TestSurfaceFactory()); 104 surface_factory_.reset(new HeadlessSurfaceFactory());
103 gpu_platform_support_.reset(CreateStubGpuPlatformSupport()); 105 gpu_platform_support_.reset(CreateStubGpuPlatformSupport());
104 } 106 }
105 107
106 private: 108 private:
107 scoped_ptr<TestWindowManager> window_manager_; 109 scoped_ptr<HeadlessWindowManager> window_manager_;
108 scoped_ptr<TestSurfaceFactory> surface_factory_; 110 scoped_ptr<HeadlessSurfaceFactory> surface_factory_;
109 scoped_ptr<PlatformEventSource> platform_event_source_; 111 scoped_ptr<PlatformEventSource> platform_event_source_;
110 scoped_ptr<CursorFactoryOzone> cursor_factory_ozone_; 112 scoped_ptr<CursorFactoryOzone> cursor_factory_ozone_;
111 scoped_ptr<InputController> input_controller_; 113 scoped_ptr<InputController> input_controller_;
112 scoped_ptr<GpuPlatformSupport> gpu_platform_support_; 114 scoped_ptr<GpuPlatformSupport> gpu_platform_support_;
113 scoped_ptr<GpuPlatformSupportHost> gpu_platform_support_host_; 115 scoped_ptr<GpuPlatformSupportHost> gpu_platform_support_host_;
114 scoped_ptr<OverlayManagerOzone> overlay_manager_; 116 scoped_ptr<OverlayManagerOzone> overlay_manager_;
115 base::FilePath file_path_; 117 base::FilePath file_path_;
116 118
117 DISALLOW_COPY_AND_ASSIGN(OzonePlatformTest); 119 DISALLOW_COPY_AND_ASSIGN(OzonePlatformHeadless);
118 }; 120 };
119 121
120 } // namespace 122 } // namespace
121 123
122 OzonePlatform* CreateOzonePlatformTest() { 124 OzonePlatform* CreateOzonePlatformHeadless() {
123 base::CommandLine* cmd = base::CommandLine::ForCurrentProcess(); 125 base::CommandLine* cmd = base::CommandLine::ForCurrentProcess();
124 base::FilePath location; 126 base::FilePath location;
125 if (cmd->HasSwitch(switches::kOzoneDumpFile)) 127 if (cmd->HasSwitch(switches::kOzoneDumpFile))
126 location = cmd->GetSwitchValuePath(switches::kOzoneDumpFile); 128 location = cmd->GetSwitchValuePath(switches::kOzoneDumpFile);
127 return new OzonePlatformTest(location); 129 return new OzonePlatformHeadless(location);
128 } 130 }
129 131
130 } // namespace ui 132 } // namespace ui
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698