| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_WM_COMMON_WM_SHELL_WINDOW_IDS_H_ | 5 #ifndef ASH_WM_COMMON_WM_SHELL_WINDOW_IDS_H_ |
| 6 #define ASH_WM_COMMON_WM_SHELL_WINDOW_IDS_H_ | 6 #define ASH_WM_COMMON_WM_SHELL_WINDOW_IDS_H_ |
| 7 | 7 |
| 8 // Defines the ids assigned to known containers. The id for a WmWindow is | 8 // Defines the ids assigned to known containers. The id for a WmWindow is |
| 9 // accessed via GetShellWindowId(). | 9 // accessed via GetShellWindowId(). |
| 10 | 10 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 | 45 |
| 46 // The container for the lock screen modal windows. | 46 // The container for the lock screen modal windows. |
| 47 const int kShellWindowId_LockSystemModalContainer = 16; | 47 const int kShellWindowId_LockSystemModalContainer = 16; |
| 48 | 48 |
| 49 // The container for menus. | 49 // The container for menus. |
| 50 const int kShellWindowId_MenuContainer = 19; | 50 const int kShellWindowId_MenuContainer = 19; |
| 51 | 51 |
| 52 // The container for drag/drop images and tooltips. | 52 // The container for drag/drop images and tooltips. |
| 53 const int kShellWindowId_DragImageAndTooltipContainer = 20; | 53 const int kShellWindowId_DragImageAndTooltipContainer = 20; |
| 54 | 54 |
| 55 // The container for special components overlaid onscreen, such as the |
| 56 // region selector for partial screenshots. |
| 57 const int kShellWindowId_OverlayContainer = 22; |
| 58 |
| 55 // ID of the window created by PhantomWindowController or DragWindowController. | 59 // ID of the window created by PhantomWindowController or DragWindowController. |
| 56 const int kShellWindowId_PhantomWindow = 23; | 60 const int kShellWindowId_PhantomWindow = 23; |
| 57 | 61 |
| 58 } // namespace ash | 62 } // namespace ash |
| 59 | 63 |
| 60 #endif // ASH_WM_COMMON_WM_SHELL_WINDOW_IDS_H_ | 64 #endif // ASH_WM_COMMON_WM_SHELL_WINDOW_IDS_H_ |
| OLD | NEW |