| 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 #include "ash/ash_export.h" | |
| 9 | |
| 10 // 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 |
| 11 // accessed via GetShellWindowId(). | 9 // accessed via GetShellWindowId(). |
| 12 | 10 |
| 13 // TODO(sky): move this into wm namespace. | 11 // TODO(sky): move this into wm namespace. |
| 14 namespace ash { | 12 namespace ash { |
| 15 | 13 |
| 16 // 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 |
| 17 // is and is enforced in ash/shell_window_ids.h. | 15 // is and is enforced in ash/shell_window_ids.h. |
| 18 | 16 |
| 19 // The container for standard top-level windows. | 17 // The container for standard top-level windows. |
| (...skipping 14 matching lines...) Expand all Loading... |
| 34 // TODO(sky): this seems unnecessary. Perhaps it should be injected? | 32 // TODO(sky): this seems unnecessary. Perhaps it should be injected? |
| 35 // The container for the app list. | 33 // The container for the app list. |
| 36 const int kShellWindowId_AppListContainer = 12; | 34 const int kShellWindowId_AppListContainer = 12; |
| 37 | 35 |
| 38 // ID of the window created by PhantomWindowController or DragWindowController. | 36 // ID of the window created by PhantomWindowController or DragWindowController. |
| 39 const int kShellWindowId_PhantomWindow = 23; | 37 const int kShellWindowId_PhantomWindow = 23; |
| 40 | 38 |
| 41 } // namespace ash | 39 } // namespace ash |
| 42 | 40 |
| 43 #endif // ASH_WM_COMMON_WM_SHELL_WINDOW_IDS_H_ | 41 #endif // ASH_WM_COMMON_WM_SHELL_WINDOW_IDS_H_ |
| OLD | NEW |