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.h" | 9 #include "ui/base/events.h" |
10 | 10 |
(...skipping 13 matching lines...) Expand all Loading... |
24 DISPLAY_TOGGLE_SCALE, | 24 DISPLAY_TOGGLE_SCALE, |
25 EXIT, | 25 EXIT, |
26 FOCUS_LAUNCHER, | 26 FOCUS_LAUNCHER, |
27 FOCUS_NEXT_PANE, | 27 FOCUS_NEXT_PANE, |
28 FOCUS_PREVIOUS_PANE, | 28 FOCUS_PREVIOUS_PANE, |
29 FOCUS_SYSTEM_TRAY, | 29 FOCUS_SYSTEM_TRAY, |
30 KEYBOARD_BRIGHTNESS_DOWN, | 30 KEYBOARD_BRIGHTNESS_DOWN, |
31 KEYBOARD_BRIGHTNESS_UP, | 31 KEYBOARD_BRIGHTNESS_UP, |
32 MAGNIFY_SCREEN_ZOOM_IN, | 32 MAGNIFY_SCREEN_ZOOM_IN, |
33 MAGNIFY_SCREEN_ZOOM_OUT, | 33 MAGNIFY_SCREEN_ZOOM_OUT, |
| 34 MEDIA_NEXT_TRACK, |
| 35 MEDIA_PLAY_PAUSE, |
| 36 MEDIA_PREV_TRACK, |
34 NEW_INCOGNITO_WINDOW, | 37 NEW_INCOGNITO_WINDOW, |
35 NEW_TAB, | 38 NEW_TAB, |
36 NEW_WINDOW, | 39 NEW_WINDOW, |
37 NEXT_IME, | 40 NEXT_IME, |
38 OPEN_FEEDBACK_PAGE, | 41 OPEN_FEEDBACK_PAGE, |
39 PREVIOUS_IME, | 42 PREVIOUS_IME, |
40 RESTORE_TAB, | 43 RESTORE_TAB, |
41 ROTATE_SCREEN, | 44 ROTATE_SCREEN, |
42 ROTATE_WINDOWS, | 45 ROTATE_WINDOWS, |
43 SELECT_LAST_WIN, | 46 SELECT_LAST_WIN, |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 // Actions allowed while screen is locked (in addition to | 123 // Actions allowed while screen is locked (in addition to |
121 // kActionsAllowedAtLoginOrLockScreen). | 124 // kActionsAllowedAtLoginOrLockScreen). |
122 ASH_EXPORT extern const AcceleratorAction kActionsAllowedAtLockScreen[]; | 125 ASH_EXPORT extern const AcceleratorAction kActionsAllowedAtLockScreen[]; |
123 | 126 |
124 // The number of elements in kActionsAllowedAtLockScreen. | 127 // The number of elements in kActionsAllowedAtLockScreen. |
125 ASH_EXPORT extern const size_t kActionsAllowedAtLockScreenLength; | 128 ASH_EXPORT extern const size_t kActionsAllowedAtLockScreenLength; |
126 | 129 |
127 } // namespace ash | 130 } // namespace ash |
128 | 131 |
129 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ | 132 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ |
OLD | NEW |