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

Side by Side Diff: ash/root_window_controller.cc

Issue 11220002: Add new animations in second implementation. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Added shutdown animations Created 8 years, 1 month 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 <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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698