OLD | NEW |
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 "ash/root_window_controller.h" | 5 #include "ash/root_window_controller.h" |
6 | 6 |
7 #include <queue> | 7 #include <queue> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "ash/aura/aura_layout_manager_adapter.h" | 10 #include "ash/aura/aura_layout_manager_adapter.h" |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 #include "base/macros.h" | 59 #include "base/macros.h" |
60 #include "base/memory/ptr_util.h" | 60 #include "base/memory/ptr_util.h" |
61 #include "base/time/time.h" | 61 #include "base/time/time.h" |
62 #include "ui/aura/client/aura_constants.h" | 62 #include "ui/aura/client/aura_constants.h" |
63 #include "ui/aura/client/drag_drop_client.h" | 63 #include "ui/aura/client/drag_drop_client.h" |
64 #include "ui/aura/client/screen_position_client.h" | 64 #include "ui/aura/client/screen_position_client.h" |
65 #include "ui/aura/window.h" | 65 #include "ui/aura/window.h" |
66 #include "ui/aura/window_event_dispatcher.h" | 66 #include "ui/aura/window_event_dispatcher.h" |
67 #include "ui/aura/window_observer.h" | 67 #include "ui/aura/window_observer.h" |
68 #include "ui/aura/window_tracker.h" | 68 #include "ui/aura/window_tracker.h" |
69 #include "ui/display/display.h" | |
70 #include "ui/display/manager/display_manager.h" | |
71 #include "ui/display/screen.h" | |
72 #include "ui/display/types/display_constants.h" | 69 #include "ui/display/types/display_constants.h" |
73 #include "ui/keyboard/keyboard_controller.h" | 70 #include "ui/keyboard/keyboard_controller.h" |
74 #include "ui/keyboard/keyboard_util.h" | 71 #include "ui/keyboard/keyboard_util.h" |
75 #include "ui/views/view_model.h" | 72 #include "ui/views/view_model.h" |
76 #include "ui/views/view_model_utils.h" | 73 #include "ui/views/view_model_utils.h" |
77 #include "ui/wm/core/capture_controller.h" | 74 #include "ui/wm/core/capture_controller.h" |
78 #include "ui/wm/core/visibility_controller.h" | 75 #include "ui/wm/core/visibility_controller.h" |
79 #include "ui/wm/core/window_util.h" | 76 #include "ui/wm/core/window_util.h" |
80 #include "ui/wm/public/tooltip_client.h" | 77 #include "ui/wm/public/tooltip_client.h" |
81 #include "ui/wm/public/window_types.h" | 78 #include "ui/wm/public/window_types.h" |
(...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
568 EnableTouchHudProjection(); | 565 EnableTouchHudProjection(); |
569 else | 566 else |
570 DisableTouchHudProjection(); | 567 DisableTouchHudProjection(); |
571 } | 568 } |
572 | 569 |
573 RootWindowController* GetRootWindowController(const aura::Window* root_window) { | 570 RootWindowController* GetRootWindowController(const aura::Window* root_window) { |
574 return root_window ? GetRootWindowSettings(root_window)->controller : nullptr; | 571 return root_window ? GetRootWindowSettings(root_window)->controller : nullptr; |
575 } | 572 } |
576 | 573 |
577 } // namespace ash | 574 } // namespace ash |
OLD | NEW |