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 "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "ui/base/events/event_constants.h" | 10 #include "ui/base/events/event_constants.h" |
(...skipping 26 matching lines...) Expand all Loading... |
37 MEDIA_PLAY_PAUSE, | 37 MEDIA_PLAY_PAUSE, |
38 MEDIA_PREV_TRACK, | 38 MEDIA_PREV_TRACK, |
39 NEW_INCOGNITO_WINDOW, | 39 NEW_INCOGNITO_WINDOW, |
40 NEW_TAB, | 40 NEW_TAB, |
41 NEW_WINDOW, | 41 NEW_WINDOW, |
42 NEXT_IME, | 42 NEXT_IME, |
43 OPEN_FEEDBACK_PAGE, | 43 OPEN_FEEDBACK_PAGE, |
44 PREVIOUS_IME, | 44 PREVIOUS_IME, |
45 POWER_PRESSED, | 45 POWER_PRESSED, |
46 POWER_RELEASED, | 46 POWER_RELEASED, |
| 47 PRINT_UI_HIERARCHIES, |
47 RESTORE_TAB, | 48 RESTORE_TAB, |
48 ROTATE_SCREEN, | 49 ROTATE_SCREEN, |
49 ROTATE_WINDOW, | 50 ROTATE_WINDOW, |
50 SCALE_UI_DOWN, | 51 SCALE_UI_DOWN, |
51 SCALE_UI_UP, | 52 SCALE_UI_UP, |
52 SELECT_LAST_WIN, | 53 SELECT_LAST_WIN, |
53 SELECT_WIN_0, | 54 SELECT_WIN_0, |
54 SELECT_WIN_1, | 55 SELECT_WIN_1, |
55 SELECT_WIN_2, | 56 SELECT_WIN_2, |
56 SELECT_WIN_3, | 57 SELECT_WIN_3, |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 | 154 |
154 // Actions allowed in app mode. | 155 // Actions allowed in app mode. |
155 ASH_EXPORT extern const AcceleratorAction kActionsAllowedInAppMode[]; | 156 ASH_EXPORT extern const AcceleratorAction kActionsAllowedInAppMode[]; |
156 | 157 |
157 // The number of elements in kActionsAllowedInAppMode. | 158 // The number of elements in kActionsAllowedInAppMode. |
158 ASH_EXPORT extern const size_t kActionsAllowedInAppModeLength; | 159 ASH_EXPORT extern const size_t kActionsAllowedInAppModeLength; |
159 | 160 |
160 } // namespace ash | 161 } // namespace ash |
161 | 162 |
162 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ | 163 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ |
OLD | NEW |