OLD | NEW |
---|---|
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #ifndef UI_AURA_SHELL_SHELL_WINDOW_IDS_H_ | 5 #ifndef UI_AURA_SHELL_SHELL_WINDOW_IDS_H_ |
6 #define UI_AURA_SHELL_SHELL_WINDOW_IDS_H_ | 6 #define UI_AURA_SHELL_SHELL_WINDOW_IDS_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 // Declarations of ids of special shell windows. | 9 // Declarations of ids of special shell windows. |
10 | 10 |
11 namespace aura_shell { | 11 namespace aura_shell { |
12 | 12 |
13 namespace internal { | 13 namespace internal { |
14 | 14 |
15 // The desktop background window. | 15 // The desktop background window. |
16 const int kShellWindowId_DesktopBackgroundContainer = 0; | 16 const int kShellWindowId_DesktopBackgroundContainer = 0; |
17 | 17 |
18 // The container for standard top-level windows. | 18 // The container for standard top-level windows. |
19 const int kShellWindowId_DefaultContainer = 1; | 19 const int kShellWindowId_DefaultContainer = 1; |
20 | 20 |
21 // The container for top-level windows with the 'always-on-top' flag set. | 21 // The container for top-level windows with the 'always-on-top' flag set. |
22 const int kShellWindowId_AlwaysOnTopContainer = 2; | 22 const int kShellWindowId_AlwaysOnTopContainer = 2; |
23 | 23 |
24 // The container for the launcher. | 24 // The container for the launcher. |
25 const int kShellWindowId_LauncherContainer = 3; | 25 const int kShellWindowId_LauncherContainer = 3; |
26 | 26 |
27 // The container for panel windows. | |
28 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.
| |
29 | |
27 // The container for user-specific modal windows. | 30 // The container for user-specific modal windows. |
28 const int kShellWindowId_ModalContainer = 4; | 31 const int kShellWindowId_ModalContainer = 5; |
29 | 32 |
30 // The container for the lock screen. | 33 // The container for the lock screen. |
31 const int kShellWindowId_LockScreenContainer = 5; | 34 const int kShellWindowId_LockScreenContainer = 6; |
32 | 35 |
33 // The container for the lock screen modal windows. | 36 // The container for the lock screen modal windows. |
34 const int kShellWindowId_LockModalContainer = 6; | 37 const int kShellWindowId_LockModalContainer = 7; |
35 | 38 |
36 // The container for the status area. | 39 // The container for the status area. |
37 const int kShellWindowId_StatusContainer = 7; | 40 const int kShellWindowId_StatusContainer = 8; |
38 | 41 |
39 // The container for menus and tooltips. | 42 // The container for menus and tooltips. |
40 const int kShellWindowId_MenusAndTooltipsContainer = 8; | 43 const int kShellWindowId_MenusAndTooltipsContainer = 9; |
41 | 44 |
42 } // namespace internal | 45 } // namespace internal |
43 | 46 |
44 } // namespace aura_shell | 47 } // namespace aura_shell |
45 | 48 |
46 | 49 |
47 #endif // UI_AURA_SHELL_SHELL_WINDOW_IDS_H_ | 50 #endif // UI_AURA_SHELL_SHELL_WINDOW_IDS_H_ |
OLD | NEW |