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_COMMON_WM_WM_SHELL_WINDOW_IDS_H_ |
6 #define ASH_WM_COMMON_WM_SHELL_WINDOW_IDS_H_ | 6 #define ASH_COMMON_WM_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 |
11 // TODO(sky): move this into wm namespace. | 11 // TODO(sky): move this into wm namespace. |
12 namespace ash { | 12 namespace ash { |
13 | 13 |
14 // NOTE: while the value of these is not necessarily important, the ordering | 14 // NOTE: while the value of these is not necessarily important, the ordering |
15 // is and is enforced in ash/shell_window_ids.h. | 15 // is and is enforced in ash/shell_window_ids.h. |
16 | 16 |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 | 54 |
55 // The container for special components overlaid onscreen, such as the | 55 // The container for special components overlaid onscreen, such as the |
56 // region selector for partial screenshots. | 56 // region selector for partial screenshots. |
57 const int kShellWindowId_OverlayContainer = 22; | 57 const int kShellWindowId_OverlayContainer = 22; |
58 | 58 |
59 // ID of the window created by PhantomWindowController or DragWindowController. | 59 // ID of the window created by PhantomWindowController or DragWindowController. |
60 const int kShellWindowId_PhantomWindow = 23; | 60 const int kShellWindowId_PhantomWindow = 23; |
61 | 61 |
62 } // namespace ash | 62 } // namespace ash |
63 | 63 |
64 #endif // ASH_WM_COMMON_WM_SHELL_WINDOW_IDS_H_ | 64 #endif // ASH_COMMON_WM_WM_SHELL_WINDOW_IDS_H_ |
OLD | NEW |