| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 #include "ash/wm/panels/panel_window_event_handler.h" | 47 #include "ash/wm/panels/panel_window_event_handler.h" |
| 48 #include "ash/wm/root_window_layout_manager.h" | 48 #include "ash/wm/root_window_layout_manager.h" |
| 49 #include "ash/wm/stacking_controller.h" | 49 #include "ash/wm/stacking_controller.h" |
| 50 #include "ash/wm/switchable_windows.h" | 50 #include "ash/wm/switchable_windows.h" |
| 51 #include "ash/wm/system_modal_container_layout_manager.h" | 51 #include "ash/wm/system_modal_container_layout_manager.h" |
| 52 #include "ash/wm/system_wallpaper_controller.h" | 52 #include "ash/wm/system_wallpaper_controller.h" |
| 53 #include "ash/wm/window_properties.h" | 53 #include "ash/wm/window_properties.h" |
| 54 #include "ash/wm/window_state.h" | 54 #include "ash/wm/window_state.h" |
| 55 #include "ash/wm/window_state_aura.h" | 55 #include "ash/wm/window_state_aura.h" |
| 56 #include "ash/wm/window_util.h" | 56 #include "ash/wm/window_util.h" |
| 57 #include "ash/wm/wm_screen_util.h" | |
| 58 #include "ash/wm/workspace/workspace_layout_manager.h" | 57 #include "ash/wm/workspace/workspace_layout_manager.h" |
| 59 #include "ash/wm/workspace_controller.h" | 58 #include "ash/wm/workspace_controller.h" |
| 60 #include "ash/wm_window.h" | 59 #include "ash/wm_window.h" |
| 61 #include "base/command_line.h" | 60 #include "base/command_line.h" |
| 62 #include "base/macros.h" | 61 #include "base/macros.h" |
| 63 #include "base/memory/ptr_util.h" | 62 #include "base/memory/ptr_util.h" |
| 64 #include "base/time/time.h" | 63 #include "base/time/time.h" |
| 65 #include "chromeos/chromeos_switches.h" | 64 #include "chromeos/chromeos_switches.h" |
| 66 #include "ui/aura/client/aura_constants.h" | 65 #include "ui/aura/client/aura_constants.h" |
| 67 #include "ui/aura/client/drag_drop_client.h" | 66 #include "ui/aura/client/drag_drop_client.h" |
| (...skipping 1038 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1106 EnableTouchHudProjection(); | 1105 EnableTouchHudProjection(); |
| 1107 else | 1106 else |
| 1108 DisableTouchHudProjection(); | 1107 DisableTouchHudProjection(); |
| 1109 } | 1108 } |
| 1110 | 1109 |
| 1111 RootWindowController* GetRootWindowController(const aura::Window* root_window) { | 1110 RootWindowController* GetRootWindowController(const aura::Window* root_window) { |
| 1112 return root_window ? GetRootWindowSettings(root_window)->controller : nullptr; | 1111 return root_window ? GetRootWindowSettings(root_window)->controller : nullptr; |
| 1113 } | 1112 } |
| 1114 | 1113 |
| 1115 } // namespace ash | 1114 } // namespace ash |
| OLD | NEW |