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

Side by Side Diff: trunk/src/ui/aura/demo/demo_main.cc

Issue 15838015: Revert 202787 "Remove unnecessary ui::CompositorTestSupport" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « trunk/src/ui/aura/bench/bench_main.cc ('k') | trunk/src/ui/aura/test/test_suite.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 #include "base/at_exit.h" 5 #include "base/at_exit.h"
6 #include "base/command_line.h" 6 #include "base/command_line.h"
7 #include "base/i18n/icu_util.h" 7 #include "base/i18n/icu_util.h"
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "base/message_loop.h" 9 #include "base/message_loop.h"
10 #include "third_party/skia/include/core/SkXfermode.h" 10 #include "third_party/skia/include/core/SkXfermode.h"
11 #include "ui/aura/client/default_capture_client.h" 11 #include "ui/aura/client/default_capture_client.h"
12 #include "ui/aura/client/stacking_client.h" 12 #include "ui/aura/client/stacking_client.h"
13 #include "ui/aura/env.h" 13 #include "ui/aura/env.h"
14 #include "ui/aura/root_window.h" 14 #include "ui/aura/root_window.h"
15 #include "ui/aura/test/test_screen.h" 15 #include "ui/aura/test/test_screen.h"
16 #include "ui/aura/window.h" 16 #include "ui/aura/window.h"
17 #include "ui/aura/window_delegate.h" 17 #include "ui/aura/window_delegate.h"
18 #include "ui/base/events/event.h" 18 #include "ui/base/events/event.h"
19 #include "ui/base/hit_test.h" 19 #include "ui/base/hit_test.h"
20 #include "ui/base/resource/resource_bundle.h" 20 #include "ui/base/resource/resource_bundle.h"
21 #include "ui/base/ui_base_paths.h" 21 #include "ui/base/ui_base_paths.h"
22 #include "ui/compositor/test/compositor_test_support.h"
22 #include "ui/gfx/canvas.h" 23 #include "ui/gfx/canvas.h"
23 #include "ui/gfx/rect.h" 24 #include "ui/gfx/rect.h"
24 25
25 #if defined(USE_X11) 26 #if defined(USE_X11)
26 #include "base/message_pump_aurax11.h" 27 #include "base/message_pump_aurax11.h"
27 #endif 28 #endif
28 29
29 namespace { 30 namespace {
30 31
31 // Trivial WindowDelegate implementation that draws a colored background. 32 // Trivial WindowDelegate implementation that draws a colored background.
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 aura::RootWindow* root_window_; 103 aura::RootWindow* root_window_;
103 104
104 scoped_ptr<aura::client::DefaultCaptureClient> capture_client_; 105 scoped_ptr<aura::client::DefaultCaptureClient> capture_client_;
105 106
106 DISALLOW_COPY_AND_ASSIGN(DemoStackingClient); 107 DISALLOW_COPY_AND_ASSIGN(DemoStackingClient);
107 }; 108 };
108 109
109 int DemoMain() { 110 int DemoMain() {
110 // Create the message-loop here before creating the root window. 111 // Create the message-loop here before creating the root window.
111 base::MessageLoop message_loop(base::MessageLoop::TYPE_UI); 112 base::MessageLoop message_loop(base::MessageLoop::TYPE_UI);
113 ui::CompositorTestSupport::Initialize();
112 aura::Env::GetInstance(); 114 aura::Env::GetInstance();
113 scoped_ptr<aura::TestScreen> test_screen(aura::TestScreen::Create()); 115 scoped_ptr<aura::TestScreen> test_screen(aura::TestScreen::Create());
114 gfx::Screen::SetScreenInstance(gfx::SCREEN_TYPE_NATIVE, test_screen.get()); 116 gfx::Screen::SetScreenInstance(gfx::SCREEN_TYPE_NATIVE, test_screen.get());
115 scoped_ptr<aura::RootWindow> root_window( 117 scoped_ptr<aura::RootWindow> root_window(
116 test_screen->CreateRootWindowForPrimaryDisplay()); 118 test_screen->CreateRootWindowForPrimaryDisplay());
117 scoped_ptr<DemoStackingClient> stacking_client(new DemoStackingClient( 119 scoped_ptr<DemoStackingClient> stacking_client(new DemoStackingClient(
118 root_window.get())); 120 root_window.get()));
119 121
120 // Create a hierarchy of test windows. 122 // Create a hierarchy of test windows.
121 DemoWindowDelegate window_delegate1(SK_ColorBLUE); 123 DemoWindowDelegate window_delegate1(SK_ColorBLUE);
(...skipping 16 matching lines...) Expand all
138 aura::Window window3(&window_delegate3); 140 aura::Window window3(&window_delegate3);
139 window3.set_id(3); 141 window3.set_id(3);
140 window3.Init(ui::LAYER_TEXTURED); 142 window3.Init(ui::LAYER_TEXTURED);
141 window3.SetBounds(gfx::Rect(10, 10, 50, 50)); 143 window3.SetBounds(gfx::Rect(10, 10, 50, 50));
142 window3.Show(); 144 window3.Show();
143 window2.AddChild(&window3); 145 window2.AddChild(&window3);
144 146
145 root_window->ShowRootWindow(); 147 root_window->ShowRootWindow();
146 base::MessageLoopForUI::current()->Run(); 148 base::MessageLoopForUI::current()->Run();
147 149
150 ui::CompositorTestSupport::Terminate();
151
148 return 0; 152 return 0;
149 } 153 }
150 154
151 } // namespace 155 } // namespace
152 156
153 int main(int argc, char** argv) { 157 int main(int argc, char** argv) {
154 CommandLine::Init(argc, argv); 158 CommandLine::Init(argc, argv);
155 159
156 // The exit manager is in charge of calling the dtors of singleton objects. 160 // The exit manager is in charge of calling the dtors of singleton objects.
157 base::AtExitManager exit_manager; 161 base::AtExitManager exit_manager;
158 162
159 ui::RegisterPathProvider(); 163 ui::RegisterPathProvider();
160 icu_util::Initialize(); 164 icu_util::Initialize();
161 ResourceBundle::InitSharedInstanceWithLocale("en-US", NULL); 165 ResourceBundle::InitSharedInstanceWithLocale("en-US", NULL);
162 166
163 return DemoMain(); 167 return DemoMain();
164 } 168 }
OLDNEW
« no previous file with comments | « trunk/src/ui/aura/bench/bench_main.cc ('k') | trunk/src/ui/aura/test/test_suite.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698