Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(138)

Side by Side Diff: ui/aura_shell/shell_window_ids.h

Issue 8574033: Beginnings of Window Modality support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/aura_shell/shell_factory.h ('k') | ui/aura_shell/stacking_controller.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 UI_AURA_SHELL_SHELL_WINDOW_IDS_H_ 5 #ifndef UI_AURA_SHELL_SHELL_WINDOW_IDS_H_
6 #define UI_AURA_SHELL_SHELL_WINDOW_IDS_H_ 6 #define UI_AURA_SHELL_SHELL_WINDOW_IDS_H_
7 #pragma once 7 #pragma once
8 8
9 // Declarations of ids of special shell windows. 9 // Declarations of ids of special shell windows.
10 10
11 namespace aura_shell { 11 namespace aura_shell {
12 12
13 namespace internal { 13 namespace internal {
14 14
15 // The desktop background window. 15 // The desktop background window.
16 const int kShellWindowId_DesktopBackgroundContainer = 0; 16 const int kShellWindowId_DesktopBackgroundContainer = 0;
17 17
18 // The container for standard top-level windows. 18 // The container for standard top-level windows.
19 const int kShellWindowId_DefaultContainer = 1; 19 const int kShellWindowId_DefaultContainer = 1;
20 20
21 // The container for top-level windows with the 'always-on-top' flag set. 21 // The container for top-level windows with the 'always-on-top' flag set.
22 const int kShellWindowId_AlwaysOnTopContainer = 2; 22 const int kShellWindowId_AlwaysOnTopContainer = 2;
23 23
24 // The container for the launcher. 24 // The container for the launcher.
25 const int kShellWindowId_LauncherContainer = 3; 25 const int kShellWindowId_LauncherContainer = 3;
26 26
27 // The container for user-specific modal windows.
28 const int kShellWindowId_ModalContainer = 4;
29
27 // The container for the lock screen. 30 // The container for the lock screen.
28 const int kShellWindowId_LockScreenContainer = 4; 31 const int kShellWindowId_LockScreenContainer = 5;
29 32
30 // The container for the status area. 33 // The container for the status area.
31 const int kShellWindowId_StatusContainer = 5; 34 const int kShellWindowId_StatusContainer = 6;
32 35
33 // The container for menus and tooltips. 36 // The container for menus and tooltips.
34 const int kShellWindowId_MenusAndTooltipsContainer = 6; 37 const int kShellWindowId_MenusAndTooltipsContainer = 7;
35 38
36 } // namespace internal 39 } // namespace internal
37 40
38 } // namespace aura_shell 41 } // namespace aura_shell
39 42
40 43
41 #endif // UI_AURA_SHELL_SHELL_WINDOW_IDS_H_ 44 #endif // UI_AURA_SHELL_SHELL_WINDOW_IDS_H_
OLDNEW
« no previous file with comments | « ui/aura_shell/shell_factory.h ('k') | ui/aura_shell/stacking_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698