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 COMPONENTS_MUS_WS_MODAL_WINDOW_CONTROLLER_H_ | 5 #ifndef SERVICES_UI_WS_MODAL_WINDOW_CONTROLLER_H_ |
6 #define COMPONENTS_MUS_WS_MODAL_WINDOW_CONTROLLER_H_ | 6 #define SERVICES_UI_WS_MODAL_WINDOW_CONTROLLER_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <map> | 9 #include <map> |
10 | 10 |
11 #include "components/mus/ws/server_window_drawn_tracker_observer.h" | 11 #include "services/ui/ws/server_window_drawn_tracker_observer.h" |
12 #include "components/mus/ws/server_window_observer.h" | 12 #include "services/ui/ws/server_window_observer.h" |
13 | 13 |
14 namespace mus { | 14 namespace mus { |
15 namespace ws { | 15 namespace ws { |
16 | 16 |
17 class EventDispatcher; | 17 class EventDispatcher; |
18 class ServerWindow; | 18 class ServerWindow; |
19 class ServerWindowDrawnTracker; | 19 class ServerWindowDrawnTracker; |
20 | 20 |
21 namespace test { | 21 namespace test { |
22 class ModalWindowControllerTestApi; | 22 class ModalWindowControllerTestApi; |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 // Drawn trackers for system modal windows. | 77 // Drawn trackers for system modal windows. |
78 std::map<ServerWindow*, std::unique_ptr<ServerWindowDrawnTracker>> | 78 std::map<ServerWindow*, std::unique_ptr<ServerWindowDrawnTracker>> |
79 window_drawn_trackers_; | 79 window_drawn_trackers_; |
80 | 80 |
81 DISALLOW_COPY_AND_ASSIGN(ModalWindowController); | 81 DISALLOW_COPY_AND_ASSIGN(ModalWindowController); |
82 }; | 82 }; |
83 | 83 |
84 } // namespace ws | 84 } // namespace ws |
85 } // namespace mus | 85 } // namespace mus |
86 | 86 |
87 #endif // COMPONENTS_MUS_WS_MODAL_WINDOW_CONTROLLER_H_ | 87 #endif // SERVICES_UI_WS_MODAL_WINDOW_CONTROLLER_H_ |
OLD | NEW |