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 <vector> | 7 #include <vector> |
8 | 8 |
9 #include "ash/ash_constants.h" | 9 #include "ash/ash_constants.h" |
10 #include "ash/ash_switches.h" | 10 #include "ash/ash_switches.h" |
(...skipping 22 matching lines...) Expand all Loading... |
33 #include "ash/wm/screen_dimmer.h" | 33 #include "ash/wm/screen_dimmer.h" |
34 #include "ash/wm/stacking_controller.h" | 34 #include "ash/wm/stacking_controller.h" |
35 #include "ash/wm/status_area_layout_manager.h" | 35 #include "ash/wm/status_area_layout_manager.h" |
36 #include "ash/wm/system_background_controller.h" | 36 #include "ash/wm/system_background_controller.h" |
37 #include "ash/wm/system_modal_container_layout_manager.h" | 37 #include "ash/wm/system_modal_container_layout_manager.h" |
38 #include "ash/wm/toplevel_window_event_handler.h" | 38 #include "ash/wm/toplevel_window_event_handler.h" |
39 #include "ash/wm/window_properties.h" | 39 #include "ash/wm/window_properties.h" |
40 #include "ash/wm/window_util.h" | 40 #include "ash/wm/window_util.h" |
41 #include "ash/wm/workspace_controller.h" | 41 #include "ash/wm/workspace_controller.h" |
42 #include "base/command_line.h" | 42 #include "base/command_line.h" |
43 #include "base/time.h" | 43 #include "base/time/time.h" |
44 #include "ui/aura/client/aura_constants.h" | 44 #include "ui/aura/client/aura_constants.h" |
45 #include "ui/aura/client/tooltip_client.h" | 45 #include "ui/aura/client/tooltip_client.h" |
46 #include "ui/aura/root_window.h" | 46 #include "ui/aura/root_window.h" |
47 #include "ui/aura/window.h" | 47 #include "ui/aura/window.h" |
48 #include "ui/aura/window_observer.h" | 48 #include "ui/aura/window_observer.h" |
49 #include "ui/base/models/menu_model.h" | 49 #include "ui/base/models/menu_model.h" |
50 #include "ui/gfx/display.h" | 50 #include "ui/gfx/display.h" |
51 #include "ui/gfx/screen.h" | 51 #include "ui/gfx/screen.h" |
52 #include "ui/keyboard/keyboard_controller.h" | 52 #include "ui/keyboard/keyboard_controller.h" |
53 #include "ui/keyboard/keyboard_util.h" | 53 #include "ui/keyboard/keyboard_util.h" |
(...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
648 "OverlayContainer", | 648 "OverlayContainer", |
649 lock_screen_related_containers); | 649 lock_screen_related_containers); |
650 SetUsesScreenCoordinates(overlay_container); | 650 SetUsesScreenCoordinates(overlay_container); |
651 | 651 |
652 CreateContainer(kShellWindowId_PowerButtonAnimationContainer, | 652 CreateContainer(kShellWindowId_PowerButtonAnimationContainer, |
653 "PowerButtonAnimationContainer", root_window) ; | 653 "PowerButtonAnimationContainer", root_window) ; |
654 } | 654 } |
655 | 655 |
656 } // namespace internal | 656 } // namespace internal |
657 } // namespace ash | 657 } // namespace ash |
OLD | NEW |