| 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" |
| 11 #include "ash/aura/wm_shelf_aura.h" | 11 #include "ash/aura/wm_shelf_aura.h" |
| 12 #include "ash/aura/wm_window_aura.h" | 12 #include "ash/aura/wm_window_aura.h" |
| 13 #include "ash/common/ash_constants.h" | 13 #include "ash/common/ash_constants.h" |
| 14 #include "ash/common/ash_switches.h" | 14 #include "ash/common/ash_switches.h" |
| 15 #include "ash/common/focus_cycler.h" | 15 #include "ash/common/focus_cycler.h" |
| 16 #include "ash/common/login_status.h" |
| 16 #include "ash/common/root_window_controller_common.h" | 17 #include "ash/common/root_window_controller_common.h" |
| 17 #include "ash/common/session/session_state_delegate.h" | 18 #include "ash/common/session/session_state_delegate.h" |
| 18 #include "ash/common/shelf/shelf_types.h" | 19 #include "ash/common/shelf/shelf_types.h" |
| 19 #include "ash/common/shell_window_ids.h" | 20 #include "ash/common/shell_window_ids.h" |
| 20 #include "ash/common/system/tray/system_tray_delegate.h" | 21 #include "ash/common/system/tray/system_tray_delegate.h" |
| 21 #include "ash/common/wm/always_on_top_controller.h" | 22 #include "ash/common/wm/always_on_top_controller.h" |
| 22 #include "ash/common/wm/container_finder.h" | 23 #include "ash/common/wm/container_finder.h" |
| 23 #include "ash/common/wm/dock/docked_window_layout_manager.h" | 24 #include "ash/common/wm/dock/docked_window_layout_manager.h" |
| 24 #include "ash/common/wm/fullscreen_window_finder.h" | 25 #include "ash/common/wm/fullscreen_window_finder.h" |
| 25 #include "ash/common/wm/panels/panel_layout_manager.h" | 26 #include "ash/common/wm/panels/panel_layout_manager.h" |
| (...skipping 951 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 977 aura::Window* primary_root_window = Shell::GetInstance() | 978 aura::Window* primary_root_window = Shell::GetInstance() |
| 978 ->window_tree_host_manager() | 979 ->window_tree_host_manager() |
| 979 ->GetPrimaryRootWindow(); | 980 ->GetPrimaryRootWindow(); |
| 980 return GetRootWindowSettings(primary_root_window)->controller; | 981 return GetRootWindowSettings(primary_root_window)->controller; |
| 981 } | 982 } |
| 982 | 983 |
| 983 return GetRootWindowSettings(root_window)->controller; | 984 return GetRootWindowSettings(root_window)->controller; |
| 984 } | 985 } |
| 985 | 986 |
| 986 } // namespace ash | 987 } // namespace ash |
| OLD | NEW |