OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 SERVICES_UI_DEMO_MUS_DEMO_H_ | 5 #ifndef SERVICES_UI_DEMO_MUS_DEMO_H_ |
6 #define SERVICES_UI_DEMO_MUS_DEMO_H_ | 6 #define SERVICES_UI_DEMO_MUS_DEMO_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <memory> | 9 #include <memory> |
10 #include <set> | 10 #include <set> |
(...skipping 17 matching lines...) Expand all Loading... |
28 } | 28 } |
29 } // namespace aura | 29 } // namespace aura |
30 | 30 |
31 namespace wm { | 31 namespace wm { |
32 class WMState; | 32 class WMState; |
33 } | 33 } |
34 | 34 |
35 namespace ui { | 35 namespace ui { |
36 namespace demo { | 36 namespace demo { |
37 | 37 |
38 class WindowTreeData; | |
39 | |
40 // A simple MUS Demo service. This service connects to the service:ui, adds a | 38 // A simple MUS Demo service. This service connects to the service:ui, adds a |
41 // new window to the root Window, and draws a spinning square in the center of | 39 // new window to the root Window, and draws a spinning square in the center of |
42 // the window. Provides a simple way to demonstrate that the graphic stack works | 40 // the window. Provides a simple way to demonstrate that the graphic stack works |
43 // as intended. | 41 // as intended. |
44 class MusDemo : public service_manager::Service, | 42 class MusDemo : public service_manager::Service, |
45 public aura::WindowTreeClientDelegate, | 43 public aura::WindowTreeClientDelegate, |
46 public aura::WindowManagerDelegate { | 44 public aura::WindowManagerDelegate { |
47 public: | 45 public: |
48 MusDemo(); | 46 MusDemo(); |
49 ~MusDemo() override; | 47 ~MusDemo() override; |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 void OnWmDeactivateWindow(aura::Window* window) override; | 95 void OnWmDeactivateWindow(aura::Window* window) override; |
98 | 96 |
99 std::unique_ptr<aura::WindowTreeClient> window_tree_client_; | 97 std::unique_ptr<aura::WindowTreeClient> window_tree_client_; |
100 std::unique_ptr<aura::Env> env_; | 98 std::unique_ptr<aura::Env> env_; |
101 std::unique_ptr<display::ScreenBase> screen_; | 99 std::unique_ptr<display::ScreenBase> screen_; |
102 | 100 |
103 std::unique_ptr<aura::client::DefaultCaptureClient> capture_client_; | 101 std::unique_ptr<aura::client::DefaultCaptureClient> capture_client_; |
104 std::unique_ptr<::wm::WMState> wm_state_; | 102 std::unique_ptr<::wm::WMState> wm_state_; |
105 std::unique_ptr<aura::PropertyConverter> property_converter_; | 103 std::unique_ptr<aura::PropertyConverter> property_converter_; |
106 | 104 |
| 105 class WindowTreeData; |
107 std::unique_ptr<WindowTreeData> window_tree_data_; | 106 std::unique_ptr<WindowTreeData> window_tree_data_; |
108 | 107 |
109 DISALLOW_COPY_AND_ASSIGN(MusDemo); | 108 DISALLOW_COPY_AND_ASSIGN(MusDemo); |
110 }; | 109 }; |
111 | 110 |
112 } // namespace demo | 111 } // namespace demo |
113 } // namespace aura | 112 } // namespace aura |
114 | 113 |
115 #endif // SERVICES_UI_DEMO_MUS_DEMO_H_ | 114 #endif // SERVICES_UI_DEMO_MUS_DEMO_H_ |
OLD | NEW |