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 <algorithm> | 7 #include <algorithm> |
8 #include <queue> | 8 #include <queue> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 #include "ash/wm/panels/attached_panel_window_targeter.h" | 44 #include "ash/wm/panels/attached_panel_window_targeter.h" |
45 #include "ash/wm/panels/panel_layout_manager.h" | 45 #include "ash/wm/panels/panel_layout_manager.h" |
46 #include "ash/wm/panels/panel_window_event_handler.h" | 46 #include "ash/wm/panels/panel_window_event_handler.h" |
47 #include "ash/wm/root_window_layout_manager.h" | 47 #include "ash/wm/root_window_layout_manager.h" |
48 #include "ash/wm/stacking_controller.h" | 48 #include "ash/wm/stacking_controller.h" |
49 #include "ash/wm/switchable_windows.h" | 49 #include "ash/wm/switchable_windows.h" |
50 #include "ash/wm/system_modal_container_layout_manager.h" | 50 #include "ash/wm/system_modal_container_layout_manager.h" |
51 #include "ash/wm/system_wallpaper_controller.h" | 51 #include "ash/wm/system_wallpaper_controller.h" |
52 #include "ash/wm/window_properties.h" | 52 #include "ash/wm/window_properties.h" |
53 #include "ash/wm/window_state.h" | 53 #include "ash/wm/window_state.h" |
54 #include "ash/wm/window_state_aura.h" | |
55 #include "ash/wm/window_util.h" | 54 #include "ash/wm/window_util.h" |
56 #include "ash/wm/workspace/workspace_layout_manager.h" | 55 #include "ash/wm/workspace/workspace_layout_manager.h" |
57 #include "ash/wm/workspace_controller.h" | 56 #include "ash/wm/workspace_controller.h" |
58 #include "ash/wm_window.h" | 57 #include "ash/wm_window.h" |
59 #include "base/command_line.h" | 58 #include "base/command_line.h" |
60 #include "base/macros.h" | 59 #include "base/macros.h" |
61 #include "base/memory/ptr_util.h" | 60 #include "base/memory/ptr_util.h" |
62 #include "base/time/time.h" | 61 #include "base/time/time.h" |
63 #include "chromeos/chromeos_switches.h" | 62 #include "chromeos/chromeos_switches.h" |
64 #include "ui/aura/client/aura_constants.h" | 63 #include "ui/aura/client/aura_constants.h" |
(...skipping 1018 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1083 EnableTouchHudProjection(); | 1082 EnableTouchHudProjection(); |
1084 else | 1083 else |
1085 DisableTouchHudProjection(); | 1084 DisableTouchHudProjection(); |
1086 } | 1085 } |
1087 | 1086 |
1088 RootWindowController* GetRootWindowController(const aura::Window* root_window) { | 1087 RootWindowController* GetRootWindowController(const aura::Window* root_window) { |
1089 return root_window ? GetRootWindowSettings(root_window)->controller : nullptr; | 1088 return root_window ? GetRootWindowSettings(root_window)->controller : nullptr; |
1090 } | 1089 } |
1091 | 1090 |
1092 } // namespace ash | 1091 } // namespace ash |
OLD | NEW |