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

Side by Side Diff: ash/root_window_controller.cc

Issue 1933303002: Moves windowsresizers to ash/wm/common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: WorkspaceWindowResizer 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
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 19 matching lines...) Expand all
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/aura/aura_layout_manager_adapter.h" 34 #include "ash/wm/aura/aura_layout_manager_adapter.h"
35 #include "ash/wm/aura/wm_shelf_aura.h" 35 #include "ash/wm/aura/wm_shelf_aura.h"
36 #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" 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/panels/panel_layout_manager.h"
40 #include "ash/wm/common/switchable_windows.h" 41 #include "ash/wm/common/switchable_windows.h"
41 #include "ash/wm/common/window_state.h" 42 #include "ash/wm/common/window_state.h"
42 #include "ash/wm/common/workspace/workspace_layout_manager.h" 43 #include "ash/wm/common/workspace/workspace_layout_manager.h"
43 #include "ash/wm/common/workspace/workspace_layout_manager_delegate.h" 44 #include "ash/wm/common/workspace/workspace_layout_manager_delegate.h"
44 #include "ash/wm/lock_layout_manager.h" 45 #include "ash/wm/lock_layout_manager.h"
45 #include "ash/wm/panels/attached_panel_window_targeter.h" 46 #include "ash/wm/panels/attached_panel_window_targeter.h"
46 #include "ash/wm/panels/panel_layout_manager.h"
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/status_area_layout_manager.h" 50 #include "ash/wm/status_area_layout_manager.h"
51 #include "ash/wm/system_background_controller.h" 51 #include "ash/wm/system_background_controller.h"
52 #include "ash/wm/system_modal_container_layout_manager.h" 52 #include "ash/wm/system_modal_container_layout_manager.h"
53 #include "ash/wm/window_properties.h" 53 #include "ash/wm/window_properties.h"
54 #include "ash/wm/window_state_aura.h" 54 #include "ash/wm/window_state_aura.h"
55 #include "ash/wm/window_util.h" 55 #include "ash/wm/window_util.h"
56 #include "ash/wm/workspace_controller.h" 56 #include "ash/wm/workspace_controller.h"
(...skipping 1003 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

Powered by Google App Engine
This is Rietveld 408576698