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

Side by Side Diff: ash/root_window_controller.cc

Issue 11962021: Revert 177182 - ViewTest.ChangeNativeViewHierarchyFindRoots failure (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « ash/root_window_controller.h ('k') | ash/shell.h » ('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 <vector> 7 #include <vector>
8 8
9 #include "ash/ash_switches.h" 9 #include "ash/ash_switches.h"
10 #include "ash/desktop_background/desktop_background_widget_controller.h" 10 #include "ash/desktop_background/desktop_background_widget_controller.h"
11 #include "ash/display/display_controller.h" 11 #include "ash/display/display_controller.h"
12 #include "ash/display/display_manager.h" 12 #include "ash/display/display_manager.h"
13 #include "ash/focus_cycler.h" 13 #include "ash/focus_cycler.h"
14 #include "ash/shelf_types.h" 14 #include "ash/shelf_types.h"
15 #include "ash/shell.h" 15 #include "ash/shell.h"
16 #include "ash/shell_delegate.h" 16 #include "ash/shell_delegate.h"
17 #include "ash/shell_factory.h" 17 #include "ash/shell_factory.h"
18 #include "ash/shell_window_ids.h" 18 #include "ash/shell_window_ids.h"
19 #include "ash/system/status_area_widget.h" 19 #include "ash/system/status_area_widget.h"
20 #include "ash/system/tray/system_tray_delegate.h" 20 #include "ash/system/tray/system_tray_delegate.h"
21 #include "ash/wm/base_layout_manager.h" 21 #include "ash/wm/base_layout_manager.h"
22 #include "ash/wm/boot_splash_screen.h" 22 #include "ash/wm/boot_splash_screen.h"
23 #include "ash/wm/panel_layout_manager.h" 23 #include "ash/wm/panel_layout_manager.h"
24 #include "ash/wm/panel_window_event_filter.h" 24 #include "ash/wm/panel_window_event_filter.h"
25 #include "ash/wm/property_util.h" 25 #include "ash/wm/property_util.h"
26 #include "ash/wm/root_window_layout_manager.h" 26 #include "ash/wm/root_window_layout_manager.h"
27 #include "ash/wm/screen_dimmer.h" 27 #include "ash/wm/screen_dimmer.h"
28 #include "ash/wm/shelf_layout_manager.h" 28 #include "ash/wm/shelf_layout_manager.h"
29 #include "ash/wm/stacking_controller.h"
30 #include "ash/wm/status_area_layout_manager.h" 29 #include "ash/wm/status_area_layout_manager.h"
31 #include "ash/wm/system_background_controller.h" 30 #include "ash/wm/system_background_controller.h"
32 #include "ash/wm/system_modal_container_layout_manager.h" 31 #include "ash/wm/system_modal_container_layout_manager.h"
33 #include "ash/wm/toplevel_window_event_handler.h" 32 #include "ash/wm/toplevel_window_event_handler.h"
34 #include "ash/wm/window_properties.h" 33 #include "ash/wm/window_properties.h"
35 #include "ash/wm/workspace_controller.h" 34 #include "ash/wm/workspace_controller.h"
36 #include "base/command_line.h" 35 #include "base/command_line.h"
37 #include "base/time.h" 36 #include "base/time.h"
38 #include "ui/aura/client/activation_client.h" 37 #include "ui/aura/client/activation_client.h"
39 #include "ui/aura/client/aura_constants.h" 38 #include "ui/aura/client/aura_constants.h"
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 namespace internal { 161 namespace internal {
163 162
164 RootWindowController::RootWindowController(aura::RootWindow* root_window) 163 RootWindowController::RootWindowController(aura::RootWindow* root_window)
165 : root_window_(root_window), 164 : root_window_(root_window),
166 root_window_layout_(NULL), 165 root_window_layout_(NULL),
167 status_area_widget_(NULL), 166 status_area_widget_(NULL),
168 shelf_(NULL), 167 shelf_(NULL),
169 panel_layout_manager_(NULL) { 168 panel_layout_manager_(NULL) {
170 SetRootWindowController(root_window, this); 169 SetRootWindowController(root_window, this);
171 screen_dimmer_.reset(new ScreenDimmer(root_window)); 170 screen_dimmer_.reset(new ScreenDimmer(root_window));
172
173 stacking_controller_.reset(new ash::StackingController);
174 aura::client::SetStackingClient(root_window, stacking_controller_.get());
175 } 171 }
176 172
177 RootWindowController::~RootWindowController() { 173 RootWindowController::~RootWindowController() {
178 Shutdown(); 174 Shutdown();
179 root_window_.reset(); 175 root_window_.reset();
180 } 176 }
181 177
182 // static 178 // static
183 RootWindowController* RootWindowController::ForLauncher(aura::Window* window) { 179 RootWindowController* RootWindowController::ForLauncher(aura::Window* window) {
184 if (Shell::IsLauncherPerDisplayEnabled()) 180 if (Shell::IsLauncherPerDisplayEnabled())
(...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after
680 "OverlayContainer", 676 "OverlayContainer",
681 lock_screen_related_containers); 677 lock_screen_related_containers);
682 SetUsesScreenCoordinates(overlay_container); 678 SetUsesScreenCoordinates(overlay_container);
683 679
684 CreateContainer(kShellWindowId_PowerButtonAnimationContainer, 680 CreateContainer(kShellWindowId_PowerButtonAnimationContainer,
685 "PowerButtonAnimationContainer", root_window) ; 681 "PowerButtonAnimationContainer", root_window) ;
686 } 682 }
687 683
688 } // namespace internal 684 } // namespace internal
689 } // namespace ash 685 } // namespace ash
OLDNEW
« no previous file with comments | « ash/root_window_controller.h ('k') | ash/shell.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698