OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 ASH_SHELL_WINDOW_IDS_H_ | 5 #ifndef ASH_SHELL_WINDOW_IDS_H_ |
6 #define ASH_SHELL_WINDOW_IDS_H_ | 6 #define ASH_SHELL_WINDOW_IDS_H_ |
7 | 7 |
8 // Declarations of ids of special shell windows. | 8 // Declarations of ids of special shell windows. |
9 | 9 |
10 namespace ash { | 10 namespace ash { |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 const int kShellWindowId_AppListContainer = 9; | 50 const int kShellWindowId_AppListContainer = 9; |
51 | 51 |
52 // The container for user-specific modal windows. | 52 // The container for user-specific modal windows. |
53 const int kShellWindowId_SystemModalContainer = 10; | 53 const int kShellWindowId_SystemModalContainer = 10; |
54 | 54 |
55 // The container for input method components such like candidate windows. They | 55 // The container for input method components such like candidate windows. They |
56 // are almost panels but have no activations/focus, and they should appear over | 56 // are almost panels but have no activations/focus, and they should appear over |
57 // the AppList and SystemModal dialogs. | 57 // the AppList and SystemModal dialogs. |
58 const int kShellWindowId_InputMethodContainer = 11; | 58 const int kShellWindowId_InputMethodContainer = 11; |
59 | 59 |
60 // The container for the lock screen background. | |
61 const int kShellWindowId_LockScreenBackgroundContainer = 12; | |
62 | |
63 // The container for the lock screen. | 60 // The container for the lock screen. |
64 const int kShellWindowId_LockScreenContainer = 13; | 61 const int kShellWindowId_LockScreenContainer = 12; |
65 | 62 |
66 // The container for the lock screen modal windows. | 63 // The container for the lock screen modal windows. |
67 const int kShellWindowId_LockSystemModalContainer = 14; | 64 const int kShellWindowId_LockSystemModalContainer = 13; |
68 | 65 |
69 // The container for the status area. | 66 // The container for the status area. |
70 const int kShellWindowId_StatusContainer = 15; | 67 const int kShellWindowId_StatusContainer = 14; |
71 | 68 |
72 // The container for menus. | 69 // The container for menus. |
73 const int kShellWindowId_MenuContainer = 16; | 70 const int kShellWindowId_MenuContainer = 15; |
74 | 71 |
75 // The container for drag/drop images and tooltips. | 72 // The container for drag/drop images and tooltips. |
76 const int kShellWindowId_DragImageAndTooltipContainer = 17; | 73 const int kShellWindowId_DragImageAndTooltipContainer = 16; |
77 | 74 |
78 // The container for bubbles briefly overlaid onscreen to show settings changes | 75 // The container for bubbles briefly overlaid onscreen to show settings changes |
79 // (volume, brightness, etc.). | 76 // (volume, brightness, etc.). |
80 const int kShellWindowId_SettingBubbleContainer = 18; | 77 const int kShellWindowId_SettingBubbleContainer = 17; |
81 | 78 |
82 // The container for special components overlaid onscreen, such as the | 79 // The container for special components overlaid onscreen, such as the |
83 // region selector for partial screenshots. | 80 // region selector for partial screenshots. |
84 const int kShellWindowId_OverlayContainer = 19; | 81 const int kShellWindowId_OverlayContainer = 18; |
85 | 82 |
86 } // namespace internal | 83 } // namespace internal |
87 | 84 |
88 } // namespace ash | 85 } // namespace ash |
89 | 86 |
90 | 87 |
91 #endif // ASH_SHELL_WINDOW_IDS_H_ | 88 #endif // ASH_SHELL_WINDOW_IDS_H_ |
OLD | NEW |