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 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
557 "DragImageAndTooltipContainer", | 557 "DragImageAndTooltipContainer", |
558 lock_screen_related_containers); | 558 lock_screen_related_containers); |
559 SetChildWindowVisibilityChangesAnimated(drag_drop_container); | 559 SetChildWindowVisibilityChangesAnimated(drag_drop_container); |
560 SetUsesScreenCoordinates(drag_drop_container); | 560 SetUsesScreenCoordinates(drag_drop_container); |
561 | 561 |
562 aura::Window* overlay_container = CreateContainer( | 562 aura::Window* overlay_container = CreateContainer( |
563 kShellWindowId_OverlayContainer, | 563 kShellWindowId_OverlayContainer, |
564 "OverlayContainer", | 564 "OverlayContainer", |
565 lock_screen_related_containers); | 565 lock_screen_related_containers); |
566 SetUsesScreenCoordinates(overlay_container); | 566 SetUsesScreenCoordinates(overlay_container); |
567 | |
568 CreateContainer(kShellWindowId_TopmostContainer, | |
Daniel Erat
2012/10/22 17:45:48
give this a better name than "topmost". "PowerBut
| |
569 "TopmostContainer", root_window) ; | |
567 } | 570 } |
568 | 571 |
569 } // namespace internal | 572 } // namespace internal |
570 } // namespace ash | 573 } // namespace ash |
OLD | NEW |