| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 // Used by Worskpace2 for each workspace. Contains standard top-level windows. | 46 // Used by Worskpace2 for each workspace. Contains standard top-level windows. |
| 47 // WARNING: there may be more than one container with this id. | 47 // WARNING: there may be more than one container with this id. |
| 48 const int kShellWindowId_WorkspaceContainer = 6; | 48 const int kShellWindowId_WorkspaceContainer = 6; |
| 49 | 49 |
| 50 // The container for top-level windows with the 'always-on-top' flag set. | 50 // The container for top-level windows with the 'always-on-top' flag set. |
| 51 const int kShellWindowId_AlwaysOnTopContainer = 7; | 51 const int kShellWindowId_AlwaysOnTopContainer = 7; |
| 52 | 52 |
| 53 // The container for panel windows. | 53 // The container for panel windows. |
| 54 const int kShellWindowId_PanelContainer = 8; | 54 const int kShellWindowId_PanelContainer = 8; |
| 55 | 55 |
| 56 // The container for the launcher. | 56 // The container for the shelf. |
| 57 const int kShellWindowId_LauncherContainer = 9; | 57 const int kShellWindowId_ShelfContainer = 9; |
| 58 | 58 |
| 59 // The container for the app list. | 59 // The container for the app list. |
| 60 const int kShellWindowId_AppListContainer = 10; | 60 const int kShellWindowId_AppListContainer = 10; |
| 61 | 61 |
| 62 // The container for user-specific modal windows. | 62 // The container for user-specific modal windows. |
| 63 const int kShellWindowId_SystemModalContainer = 11; | 63 const int kShellWindowId_SystemModalContainer = 11; |
| 64 | 64 |
| 65 // The container for input method components such like candidate windows. They | 65 // The container for input method components such like candidate windows. They |
| 66 // are almost panels but have no activations/focus, and they should appear over | 66 // are almost panels but have no activations/focus, and they should appear over |
| 67 // the AppList and SystemModal dialogs. | 67 // the AppList and SystemModal dialogs. |
| (...skipping 30 matching lines...) Expand all Loading... |
| 98 | 98 |
| 99 // The topmost container, used for power off animation. | 99 // The topmost container, used for power off animation. |
| 100 const int kShellWindowId_PowerButtonAnimationContainer = 22; | 100 const int kShellWindowId_PowerButtonAnimationContainer = 22; |
| 101 | 101 |
| 102 } // namespace internal | 102 } // namespace internal |
| 103 | 103 |
| 104 } // namespace ash | 104 } // namespace ash |
| 105 | 105 |
| 106 | 106 |
| 107 #endif // ASH_SHELL_WINDOW_IDS_H_ | 107 #endif // ASH_SHELL_WINDOW_IDS_H_ |
| OLD | NEW |