| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 // (volume, brightness, input method bubbles, etc.). | 83 // (volume, brightness, input method bubbles, etc.). |
| 84 const int kShellWindowId_SettingBubbleContainer = 20; | 84 const int kShellWindowId_SettingBubbleContainer = 20; |
| 85 | 85 |
| 86 // The container for special components overlaid onscreen, such as the | 86 // The container for special components overlaid onscreen, such as the |
| 87 // region selector for partial screenshots. | 87 // region selector for partial screenshots. |
| 88 const int kShellWindowId_OverlayContainer = 21; | 88 const int kShellWindowId_OverlayContainer = 21; |
| 89 | 89 |
| 90 // ID of the window created by PhantomWindowController or DragWindowController. | 90 // ID of the window created by PhantomWindowController or DragWindowController. |
| 91 const int kShellWindowId_PhantomWindow = 22; | 91 const int kShellWindowId_PhantomWindow = 22; |
| 92 | 92 |
| 93 // A parent container that holds the virtual keyboard container. This is to | 93 // A parent container that holds the virtual keyboard container and ime windows |
| 94 // ensure that the virtual keyboard is stacked above most containers but below | 94 // if any. This is to ensure that the virtual keyboard or ime window is stacked |
| 95 // the mouse cursor and the power off animation. | 95 // above most containers but below the mouse cursor and the power off animation. |
| 96 const int kShellWindowId_VirtualKeyboardParentContainer = 23; | 96 const int kShellWindowId_ImeWindowParentContainer = 23; |
| 97 | 97 |
| 98 // The container for mouse cursor. | 98 // The container for mouse cursor. |
| 99 const int kShellWindowId_MouseCursorContainer = 24; | 99 const int kShellWindowId_MouseCursorContainer = 24; |
| 100 | 100 |
| 101 // The topmost container, used for power off animation. | 101 // The topmost container, used for power off animation. |
| 102 const int kShellWindowId_PowerButtonAnimationContainer = 25; | 102 const int kShellWindowId_PowerButtonAnimationContainer = 25; |
| 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 |