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

Unified Diff: ash/public/cpp/shell_window_ids.h

Issue 2790583004: Add second copy request after screen rotation to flatten the layers in animation. (Closed)
Patch Set: Move some functions to ash/utility/transformer_util. Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: ash/public/cpp/shell_window_ids.h
diff --git a/ash/public/cpp/shell_window_ids.h b/ash/public/cpp/shell_window_ids.h
index f5f1fc233e92a0b54e0131f505755786801fe6df..a7d5c0f130194765c2484160f2dc2d133a29a904 100644
--- a/ash/public/cpp/shell_window_ids.h
+++ b/ash/public/cpp/shell_window_ids.h
@@ -105,37 +105,42 @@ const int32_t kShellWindowId_MouseCursorContainer = 23;
// The topmost container, used for power off animation.
const int32_t kShellWindowId_PowerButtonAnimationContainer = 24;
+// The screen rotation container in between root window and its children, used
+// for screen rotation animation.
+const int32_t kShellWindowId_ScreenRotationContainer = 25;
oshima 2017/04/13 23:51:45 these are from another CL?
wutao 2017/04/14 00:17:53 It is from other cl, which has not committed. So I
+
const int32_t kShellWindowId_Min = 0;
const int32_t kShellWindowId_Max = kShellWindowId_PowerButtonAnimationContainer;
// A list of all the above valid container IDs. Add any new ID to this list.
// This list is needed to validate we have no duplicate IDs.
const int32_t kAllShellContainerIds[] = {
- kShellWindowId_NonLockScreenContainersContainer,
- kShellWindowId_LockScreenContainersContainer,
- kShellWindowId_LockScreenRelatedContainersContainer,
- kShellWindowId_UnparentedControlContainer,
- kShellWindowId_WallpaperContainer,
- kShellWindowId_VirtualKeyboardContainer,
- kShellWindowId_DefaultContainer,
- kShellWindowId_AlwaysOnTopContainer,
- kShellWindowId_ShelfContainer,
- kShellWindowId_ShelfBubbleContainer,
- kShellWindowId_PanelContainer,
- kShellWindowId_AppListContainer,
- kShellWindowId_SystemModalContainer,
- kShellWindowId_LockScreenWallpaperContainer,
- kShellWindowId_LockScreenContainer,
- kShellWindowId_LockSystemModalContainer,
- kShellWindowId_StatusContainer,
- kShellWindowId_ImeWindowParentContainer,
- kShellWindowId_MenuContainer,
- kShellWindowId_DragImageAndTooltipContainer,
- kShellWindowId_SettingBubbleContainer,
- kShellWindowId_OverlayContainer,
- kShellWindowId_PhantomWindow,
- kShellWindowId_MouseCursorContainer,
- kShellWindowId_PowerButtonAnimationContainer,
+ kShellWindowId_NonLockScreenContainersContainer,
+ kShellWindowId_LockScreenContainersContainer,
+ kShellWindowId_LockScreenRelatedContainersContainer,
+ kShellWindowId_UnparentedControlContainer,
+ kShellWindowId_WallpaperContainer,
+ kShellWindowId_VirtualKeyboardContainer,
+ kShellWindowId_DefaultContainer,
+ kShellWindowId_AlwaysOnTopContainer,
+ kShellWindowId_ShelfContainer,
+ kShellWindowId_ShelfBubbleContainer,
+ kShellWindowId_PanelContainer,
+ kShellWindowId_AppListContainer,
+ kShellWindowId_SystemModalContainer,
+ kShellWindowId_LockScreenWallpaperContainer,
+ kShellWindowId_LockScreenContainer,
+ kShellWindowId_LockSystemModalContainer,
+ kShellWindowId_StatusContainer,
+ kShellWindowId_ImeWindowParentContainer,
+ kShellWindowId_MenuContainer,
+ kShellWindowId_DragImageAndTooltipContainer,
+ kShellWindowId_SettingBubbleContainer,
+ kShellWindowId_OverlayContainer,
+ kShellWindowId_PhantomWindow,
+ kShellWindowId_MouseCursorContainer,
+ kShellWindowId_PowerButtonAnimationContainer,
+ kShellWindowId_ScreenRotationContainer,
};
// These are the list of container ids of containers which may contain windows

Powered by Google App Engine
This is Rietveld 408576698