Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(109)

Side by Side Diff: ash/root_window_controller.cc

Issue 1926913002: Moves more code to ash/wm/common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@refactor_workspace_layout_manager
Patch Set: merge to trunk Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ash/ash.gyp ('k') | ash/shell.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/ash_constants.h" 10 #include "ash/ash_constants.h"
(...skipping 13 matching lines...) Expand all
24 #include "ash/shell.h" 24 #include "ash/shell.h"
25 #include "ash/shell_delegate.h" 25 #include "ash/shell_delegate.h"
26 #include "ash/shell_factory.h" 26 #include "ash/shell_factory.h"
27 #include "ash/shell_window_ids.h" 27 #include "ash/shell_window_ids.h"
28 #include "ash/system/status_area_widget.h" 28 #include "ash/system/status_area_widget.h"
29 #include "ash/system/tray/system_tray_delegate.h" 29 #include "ash/system/tray/system_tray_delegate.h"
30 #include "ash/system/tray/system_tray_notifier.h" 30 #include "ash/system/tray/system_tray_notifier.h"
31 #include "ash/touch/touch_hud_debug.h" 31 #include "ash/touch/touch_hud_debug.h"
32 #include "ash/touch/touch_hud_projection.h" 32 #include "ash/touch/touch_hud_projection.h"
33 #include "ash/touch/touch_observer_hud.h" 33 #include "ash/touch/touch_observer_hud.h"
34 #include "ash/wm/always_on_top_controller.h"
35 #include "ash/wm/aura/aura_layout_manager_adapter.h" 34 #include "ash/wm/aura/aura_layout_manager_adapter.h"
36 #include "ash/wm/aura/wm_shelf_aura.h" 35 #include "ash/wm/aura/wm_shelf_aura.h"
37 #include "ash/wm/aura/wm_window_aura.h" 36 #include "ash/wm/aura/wm_window_aura.h"
37 #include "ash/wm/common/always_on_top_controller.h"
38 #include "ash/wm/common/dock/docked_window_layout_manager.h" 38 #include "ash/wm/common/dock/docked_window_layout_manager.h"
39 #include "ash/wm/common/fullscreen_window_finder.h" 39 #include "ash/wm/common/fullscreen_window_finder.h"
40 #include "ash/wm/common/switchable_windows.h" 40 #include "ash/wm/common/switchable_windows.h"
41 #include "ash/wm/common/window_state.h" 41 #include "ash/wm/common/window_state.h"
42 #include "ash/wm/common/workspace/workspace_layout_manager.h"
42 #include "ash/wm/common/workspace/workspace_layout_manager_delegate.h" 43 #include "ash/wm/common/workspace/workspace_layout_manager_delegate.h"
43 #include "ash/wm/lock_layout_manager.h" 44 #include "ash/wm/lock_layout_manager.h"
44 #include "ash/wm/panels/attached_panel_window_targeter.h" 45 #include "ash/wm/panels/attached_panel_window_targeter.h"
45 #include "ash/wm/panels/panel_layout_manager.h" 46 #include "ash/wm/panels/panel_layout_manager.h"
46 #include "ash/wm/panels/panel_window_event_handler.h" 47 #include "ash/wm/panels/panel_window_event_handler.h"
47 #include "ash/wm/root_window_layout_manager.h" 48 #include "ash/wm/root_window_layout_manager.h"
48 #include "ash/wm/stacking_controller.h" 49 #include "ash/wm/stacking_controller.h"
49 #include "ash/wm/status_area_layout_manager.h" 50 #include "ash/wm/status_area_layout_manager.h"
50 #include "ash/wm/system_background_controller.h" 51 #include "ash/wm/system_background_controller.h"
51 #include "ash/wm/system_modal_container_layout_manager.h" 52 #include "ash/wm/system_modal_container_layout_manager.h"
52 #include "ash/wm/window_properties.h" 53 #include "ash/wm/window_properties.h"
53 #include "ash/wm/window_state_aura.h" 54 #include "ash/wm/window_state_aura.h"
54 #include "ash/wm/window_util.h" 55 #include "ash/wm/window_util.h"
55 #include "ash/wm/workspace/workspace_layout_manager.h"
56 #include "ash/wm/workspace_controller.h" 56 #include "ash/wm/workspace_controller.h"
57 #include "base/command_line.h" 57 #include "base/command_line.h"
58 #include "base/memory/ptr_util.h" 58 #include "base/memory/ptr_util.h"
59 #include "base/time/time.h" 59 #include "base/time/time.h"
60 #include "ui/aura/client/aura_constants.h" 60 #include "ui/aura/client/aura_constants.h"
61 #include "ui/aura/client/screen_position_client.h" 61 #include "ui/aura/client/screen_position_client.h"
62 #include "ui/aura/window.h" 62 #include "ui/aura/window.h"
63 #include "ui/aura/window_delegate.h" 63 #include "ui/aura/window_delegate.h"
64 #include "ui/aura/window_event_dispatcher.h" 64 #include "ui/aura/window_event_dispatcher.h"
65 #include "ui/aura/window_observer.h" 65 #include "ui/aura/window_observer.h"
(...skipping 994 matching lines...) Expand 10 before | Expand all | Expand 10 after
1060 else 1060 else
1061 DisableTouchHudProjection(); 1061 DisableTouchHudProjection();
1062 } 1062 }
1063 1063
1064 RootWindowController* GetRootWindowController( 1064 RootWindowController* GetRootWindowController(
1065 const aura::Window* root_window) { 1065 const aura::Window* root_window) {
1066 return root_window ? GetRootWindowSettings(root_window)->controller : NULL; 1066 return root_window ? GetRootWindowSettings(root_window)->controller : NULL;
1067 } 1067 }
1068 1068
1069 } // namespace ash 1069 } // namespace ash
OLDNEW
« no previous file with comments | « ash/ash.gyp ('k') | ash/shell.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698