OLD | NEW |
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_ACCELERATORS_ACCELERATOR_TABLE_H_ | 5 #ifndef ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ |
6 #define ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ | 6 #define ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ |
7 | 7 |
8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
9 #include "ui/base/events/event_constants.h" | 9 #include "ui/base/events/event_constants.h" |
10 | 10 |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 // The number of elements in kActionsAllowedAtLoginOrLockScreen. | 123 // The number of elements in kActionsAllowedAtLoginOrLockScreen. |
124 ASH_EXPORT extern const size_t kActionsAllowedAtLoginOrLockScreenLength; | 124 ASH_EXPORT extern const size_t kActionsAllowedAtLoginOrLockScreenLength; |
125 | 125 |
126 // Actions allowed while screen is locked (in addition to | 126 // Actions allowed while screen is locked (in addition to |
127 // kActionsAllowedAtLoginOrLockScreen). | 127 // kActionsAllowedAtLoginOrLockScreen). |
128 ASH_EXPORT extern const AcceleratorAction kActionsAllowedAtLockScreen[]; | 128 ASH_EXPORT extern const AcceleratorAction kActionsAllowedAtLockScreen[]; |
129 | 129 |
130 // The number of elements in kActionsAllowedAtLockScreen. | 130 // The number of elements in kActionsAllowedAtLockScreen. |
131 ASH_EXPORT extern const size_t kActionsAllowedAtLockScreenLength; | 131 ASH_EXPORT extern const size_t kActionsAllowedAtLockScreenLength; |
132 | 132 |
| 133 // Actions allowed while a modal window is up. |
| 134 ASH_EXPORT extern const AcceleratorAction kActionsAllowedAtModalWindow[]; |
| 135 |
| 136 // The number of elements in kActionsAllowedAtModalWindow. |
| 137 ASH_EXPORT extern const size_t kActionsAllowedAtModalWindowLength; |
| 138 |
133 } // namespace ash | 139 } // namespace ash |
134 | 140 |
135 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ | 141 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ |
OLD | NEW |