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

Unified Diff: ash/common/shell_window_ids.h

Issue 2033843003: Makes ash/mus use RootWindowControllerCommon (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move_mash_wm
Patch Set: tweaks Created 4 years, 7 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/common/shell_window_ids.h
diff --git a/ash/common/shell_window_ids.h b/ash/common/shell_window_ids.h
index 8681e9c5d44b01e4c39077611d8583431bfc8dca..93208122c59714c370d5f1cc1366010fcfcef572 100644
--- a/ash/common/shell_window_ids.h
+++ b/ash/common/shell_window_ids.h
@@ -9,6 +9,9 @@
namespace ash {
+// Used to indicate no shell window id.
+const int kShellWindowId_Invalid = -1;
+
// A higher-level container that holds all of the containers stacked below
// kShellWindowId_LockScreenContainer. Only used by PowerButtonController for
// animating lower-level containers.
@@ -33,6 +36,7 @@ const int kShellWindowId_UnparentedControlContainer = 3;
const int kShellWindowId_DesktopBackgroundContainer = 4;
// The virtual keyboard container.
+// NOTE: this is lazily created.
const int kShellWindowId_VirtualKeyboardContainer = 5;
// The container for standard top-level windows.
@@ -99,6 +103,9 @@ const int kShellWindowId_MouseCursorContainer = 24;
// The topmost container, used for power off animation.
const int kShellWindowId_PowerButtonAnimationContainer = 25;
+const int kShellWindowId_Min = 0;
+const int kShellWindowId_Max = kShellWindowId_PowerButtonAnimationContainer;
+
// TODO(sky): remove. Temporary for rietveld to pick up file move rather than
// new file.

Powered by Google App Engine
This is Rietveld 408576698