Chromium Code Reviews| Index: ui/aura_shell/shell_window_ids.h |
| diff --git a/ui/aura_shell/shell_window_ids.h b/ui/aura_shell/shell_window_ids.h |
| index a17b6fcd294098d21ec3e4efab0b7f63a66b9f6a..080554382893b6b545b212aa22951cc69fcb152f 100644 |
| --- a/ui/aura_shell/shell_window_ids.h |
| +++ b/ui/aura_shell/shell_window_ids.h |
| @@ -24,20 +24,23 @@ const int kShellWindowId_AlwaysOnTopContainer = 2; |
| // The container for the launcher. |
| const int kShellWindowId_LauncherContainer = 3; |
| +// The container for panel windows. |
| +const int kShellWindowId_PanelContainer = 4; |
|
Ben Goodger (Google)
2011/12/22 23:22:45
You add this container before the launcher contain
prasadt
2011/12/23 01:51:40
Done.
|
| + |
| // The container for user-specific modal windows. |
| -const int kShellWindowId_ModalContainer = 4; |
| +const int kShellWindowId_ModalContainer = 5; |
| // The container for the lock screen. |
| -const int kShellWindowId_LockScreenContainer = 5; |
| +const int kShellWindowId_LockScreenContainer = 6; |
| // The container for the lock screen modal windows. |
| -const int kShellWindowId_LockModalContainer = 6; |
| +const int kShellWindowId_LockModalContainer = 7; |
| // The container for the status area. |
| -const int kShellWindowId_StatusContainer = 7; |
| +const int kShellWindowId_StatusContainer = 8; |
| // The container for menus and tooltips. |
| -const int kShellWindowId_MenusAndTooltipsContainer = 8; |
| +const int kShellWindowId_MenusAndTooltipsContainer = 9; |
| } // namespace internal |