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

Unified Diff: ash/shell_window_ids.h

Issue 1923983003: Makes WorkspaceLayoutManager use ash/wm/common types (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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/shell_window_ids.h
diff --git a/ash/shell_window_ids.h b/ash/shell_window_ids.h
index 9ec95993f783faa1e1dd20c4fa1bbaab3901fc8e..5b011f95b4b75259cc134ded03367e340d43028f 100644
--- a/ash/shell_window_ids.h
+++ b/ash/shell_window_ids.h
@@ -41,7 +41,7 @@ const int kShellWindowId_VirtualKeyboardContainer = 5;
// kShellWindowId_DefaultContainer = 6;
// The container for top-level windows with the 'always-on-top' flag set.
-const int kShellWindowId_AlwaysOnTopContainer = 7;
+// kShellWindowId_AlwaysOnTopContainer = 7;
// The container for windows docked to either side of the desktop. Defined in
// wm_shell_window_ids.
@@ -56,8 +56,8 @@ const int kShellWindowId_ShelfBubbleContainer = 10;
// The container for panel windows. Defined in wm_shell_window_ids.
// kShellWindowId_PanelContainer = 11;
-// The container for the app list.
-const int kShellWindowId_AppListContainer = 12;
+// The container for the app list. Defined in wm_shell_window_ids.
+// kShellWindowId_AppListContainer = 12;
// The container for user-specific modal windows.
const int kShellWindowId_SystemModalContainer = 13;
@@ -108,6 +108,12 @@ static_assert((kShellWindowId_DefaultContainer - 1 ==
kShellWindowId_AlwaysOnTopContainer),
"default between keyboard and always-on-top");
+static_assert((kShellWindowId_AlwaysOnTopContainer - 1 ==
+ kShellWindowId_DefaultContainer) &&
+ (kShellWindowId_AlwaysOnTopContainer + 1 ==
+ kShellWindowId_DockedContainer),
+ "always-on-top between default and docked");
+
static_assert((kShellWindowId_DockedContainer - 1 ==
kShellWindowId_AlwaysOnTopContainer) &&
(kShellWindowId_DockedContainer + 1 ==
@@ -120,6 +126,12 @@ static_assert((kShellWindowId_PanelContainer - 1 ==
kShellWindowId_AppListContainer),
"panel between shelf-bubble and app-list");
+static_assert((kShellWindowId_AppListContainer - 1 ==
+ kShellWindowId_PanelContainer) &&
+ (kShellWindowId_AppListContainer + 1 ==
+ kShellWindowId_SystemModalContainer),
+ "app-list between panel and system-modal");
+
} // namespace ash
#endif // ASH_SHELL_WINDOW_IDS_H_

Powered by Google App Engine
This is Rietveld 408576698