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

Side by Side Diff: ash/shell_window_ids.h

Issue 22465007: Whitelist virtual keyboard container to process events at login screen (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add unit tests for virtual keyboard container Created 7 years, 4 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 | Annotate | Revision Log
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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 // The container for special components overlaid onscreen, such as the 95 // The container for special components overlaid onscreen, such as the
96 // region selector for partial screenshots. 96 // region selector for partial screenshots.
97 const int kShellWindowId_OverlayContainer = 21; 97 const int kShellWindowId_OverlayContainer = 21;
98 98
99 // ID of the window created by PhantomWindowController or DragWindowController. 99 // ID of the window created by PhantomWindowController or DragWindowController.
100 const int kShellWindowId_PhantomWindow = 22; 100 const int kShellWindowId_PhantomWindow = 22;
101 101
102 // The topmost container, used for power off animation. 102 // The topmost container, used for power off animation.
103 const int kShellWindowId_PowerButtonAnimationContainer = 23; 103 const int kShellWindowId_PowerButtonAnimationContainer = 23;
104 104
105 // The virtual keyboard container.
106 const int kShellWindowId_VirtualKeyboardContainer = 24;
James Cook 2013/08/08 17:29:44 Where does this container actually sit in the hier
bshe 2013/08/08 19:39:24 I am sure what's the rule to order the IDs. Keyboa
James Cook 2013/08/08 19:52:39 This seems fine.
107
105 } // namespace internal 108 } // namespace internal
106 109
107 } // namespace ash 110 } // namespace ash
108 111
109 112
110 #endif // ASH_SHELL_WINDOW_IDS_H_ 113 #endif // ASH_SHELL_WINDOW_IDS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698