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

Side by Side Diff: ash/shell_window_ids.h

Issue 10810039: 2nd display should show the same background as login/lock screen: (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Post-review fix #2 Created 8 years, 5 months 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
OLDNEW
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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 const int kShellWindowId_AppListContainer = 9; 50 const int kShellWindowId_AppListContainer = 9;
51 51
52 // The container for user-specific modal windows. 52 // The container for user-specific modal windows.
53 const int kShellWindowId_SystemModalContainer = 10; 53 const int kShellWindowId_SystemModalContainer = 10;
54 54
55 // The container for input method components such like candidate windows. They 55 // The container for input method components such like candidate windows. They
56 // are almost panels but have no activations/focus, and they should appear over 56 // are almost panels but have no activations/focus, and they should appear over
57 // the AppList and SystemModal dialogs. 57 // the AppList and SystemModal dialogs.
58 const int kShellWindowId_InputMethodContainer = 11; 58 const int kShellWindowId_InputMethodContainer = 11;
59 59
60 // The container for the lock screen background.
61 const int kShellWindowId_LockScreenBackgroundContainer = 12;
62
60 // The container for the lock screen. 63 // The container for the lock screen.
61 const int kShellWindowId_LockScreenContainer = 12; 64 const int kShellWindowId_LockScreenContainer = 13;
62 65
63 // The container for the lock screen modal windows. 66 // The container for the lock screen modal windows.
64 const int kShellWindowId_LockSystemModalContainer = 13; 67 const int kShellWindowId_LockSystemModalContainer = 14;
65 68
66 // The container for the status area. 69 // The container for the status area.
67 const int kShellWindowId_StatusContainer = 14; 70 const int kShellWindowId_StatusContainer = 15;
68 71
69 // The container for menus. 72 // The container for menus.
70 const int kShellWindowId_MenuContainer = 15; 73 const int kShellWindowId_MenuContainer = 16;
71 74
72 // The container for drag/drop images and tooltips. 75 // The container for drag/drop images and tooltips.
73 const int kShellWindowId_DragImageAndTooltipContainer = 16; 76 const int kShellWindowId_DragImageAndTooltipContainer = 17;
74 77
75 // The container for bubbles briefly overlaid onscreen to show settings changes 78 // The container for bubbles briefly overlaid onscreen to show settings changes
76 // (volume, brightness, etc.). 79 // (volume, brightness, etc.).
77 const int kShellWindowId_SettingBubbleContainer = 17; 80 const int kShellWindowId_SettingBubbleContainer = 18;
78 81
79 // The container for special components overlaid onscreen, such as the 82 // The container for special components overlaid onscreen, such as the
80 // region selector for partial screenshots. 83 // region selector for partial screenshots.
81 const int kShellWindowId_OverlayContainer = 18; 84 const int kShellWindowId_OverlayContainer = 19;
82 85
83 } // namespace internal 86 } // namespace internal
84 87
85 } // namespace ash 88 } // namespace ash
86 89
87 90
88 #endif // ASH_SHELL_WINDOW_IDS_H_ 91 #endif // ASH_SHELL_WINDOW_IDS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698