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/desktop_background/desktop_background_widget_controller.h" | 9 #include "ash/desktop_background/desktop_background_widget_controller.h" |
10 #include "ash/display/display_controller.h" | 10 #include "ash/display/display_controller.h" |
(...skipping 598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
609 "DragImageAndTooltipContainer", | 609 "DragImageAndTooltipContainer", |
610 lock_screen_related_containers); | 610 lock_screen_related_containers); |
611 SetChildWindowVisibilityChangesAnimated(drag_drop_container); | 611 SetChildWindowVisibilityChangesAnimated(drag_drop_container); |
612 SetUsesScreenCoordinates(drag_drop_container); | 612 SetUsesScreenCoordinates(drag_drop_container); |
613 | 613 |
614 aura::Window* overlay_container = CreateContainer( | 614 aura::Window* overlay_container = CreateContainer( |
615 kShellWindowId_OverlayContainer, | 615 kShellWindowId_OverlayContainer, |
616 "OverlayContainer", | 616 "OverlayContainer", |
617 lock_screen_related_containers); | 617 lock_screen_related_containers); |
618 SetUsesScreenCoordinates(overlay_container); | 618 SetUsesScreenCoordinates(overlay_container); |
| 619 |
| 620 CreateContainer(kShellWindowId_PowerButtonAnimationContainer, |
| 621 "PowerButtonAnimationContainer", root_window) ; |
619 } | 622 } |
620 | 623 |
621 } // namespace internal | 624 } // namespace internal |
622 } // namespace ash | 625 } // namespace ash |
OLD | NEW |