| 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 #include "services/ui/ws/window_manager_state.h" | 5 #include "services/ui/ws/window_manager_state.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
| 10 #include "services/service_manager/public/interfaces/connector.mojom.h" | 10 #include "services/service_manager/public/interfaces/connector.mojom.h" |
| 11 #include "services/ui/common/event_matcher_util.h" | 11 #include "services/ui/common/accelerator_util.h" |
| 12 #include "services/ui/ws/accelerator.h" | 12 #include "services/ui/ws/accelerator.h" |
| 13 #include "services/ui/ws/display_manager.h" | 13 #include "services/ui/ws/display_manager.h" |
| 14 #include "services/ui/ws/platform_display.h" | 14 #include "services/ui/ws/platform_display.h" |
| 15 #include "services/ui/ws/server_window.h" | 15 #include "services/ui/ws/server_window.h" |
| 16 #include "services/ui/ws/user_display_manager.h" | 16 #include "services/ui/ws/user_display_manager.h" |
| 17 #include "services/ui/ws/user_id_tracker.h" | 17 #include "services/ui/ws/user_id_tracker.h" |
| 18 #include "services/ui/ws/window_manager_display_root.h" | 18 #include "services/ui/ws/window_manager_display_root.h" |
| 19 #include "services/ui/ws/window_server.h" | 19 #include "services/ui/ws/window_server.h" |
| 20 #include "services/ui/ws/window_tree.h" | 20 #include "services/ui/ws/window_tree.h" |
| 21 #include "ui/events/event.h" | 21 #include "ui/events/event.h" |
| (...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 635 window->RemoveObserver(this); | 635 window->RemoveObserver(this); |
| 636 orphaned_window_manager_display_roots_.erase(iter); | 636 orphaned_window_manager_display_roots_.erase(iter); |
| 637 return; | 637 return; |
| 638 } | 638 } |
| 639 } | 639 } |
| 640 NOTREACHED(); | 640 NOTREACHED(); |
| 641 } | 641 } |
| 642 | 642 |
| 643 } // namespace ws | 643 } // namespace ws |
| 644 } // namespace ui | 644 } // namespace ui |
| OLD | NEW |