| 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 14 matching lines...) Expand all Loading... |
| 25 CYCLE_FORWARD_MRU_RELEASED, | 25 CYCLE_FORWARD_MRU_RELEASED, |
| 26 DISABLE_CAPS_LOCK, | 26 DISABLE_CAPS_LOCK, |
| 27 DISPLAY_TOGGLE_SCALE, | 27 DISPLAY_TOGGLE_SCALE, |
| 28 EXIT, | 28 EXIT, |
| 29 FOCUS_LAUNCHER, | 29 FOCUS_LAUNCHER, |
| 30 FOCUS_NEXT_PANE, | 30 FOCUS_NEXT_PANE, |
| 31 FOCUS_PREVIOUS_PANE, | 31 FOCUS_PREVIOUS_PANE, |
| 32 FOCUS_SYSTEM_TRAY, | 32 FOCUS_SYSTEM_TRAY, |
| 33 KEYBOARD_BRIGHTNESS_DOWN, | 33 KEYBOARD_BRIGHTNESS_DOWN, |
| 34 KEYBOARD_BRIGHTNESS_UP, | 34 KEYBOARD_BRIGHTNESS_UP, |
| 35 LOCK_PRESSED, | |
| 36 LOCK_RELEASED, | |
| 37 MAGNIFY_SCREEN_ZOOM_IN, | 35 MAGNIFY_SCREEN_ZOOM_IN, |
| 38 MAGNIFY_SCREEN_ZOOM_OUT, | 36 MAGNIFY_SCREEN_ZOOM_OUT, |
| 39 MEDIA_NEXT_TRACK, | 37 MEDIA_NEXT_TRACK, |
| 40 MEDIA_PLAY_PAUSE, | 38 MEDIA_PLAY_PAUSE, |
| 41 MEDIA_PREV_TRACK, | 39 MEDIA_PREV_TRACK, |
| 42 NEW_INCOGNITO_WINDOW, | 40 NEW_INCOGNITO_WINDOW, |
| 43 NEW_TAB, | 41 NEW_TAB, |
| 44 NEW_WINDOW, | 42 NEW_WINDOW, |
| 45 NEXT_IME, | 43 NEXT_IME, |
| 46 OPEN_FEEDBACK_PAGE, | 44 OPEN_FEEDBACK_PAGE, |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 // Actions allowed while screen is locked (in addition to | 130 // Actions allowed while screen is locked (in addition to |
| 133 // kActionsAllowedAtLoginOrLockScreen). | 131 // kActionsAllowedAtLoginOrLockScreen). |
| 134 ASH_EXPORT extern const AcceleratorAction kActionsAllowedAtLockScreen[]; | 132 ASH_EXPORT extern const AcceleratorAction kActionsAllowedAtLockScreen[]; |
| 135 | 133 |
| 136 // The number of elements in kActionsAllowedAtLockScreen. | 134 // The number of elements in kActionsAllowedAtLockScreen. |
| 137 ASH_EXPORT extern const size_t kActionsAllowedAtLockScreenLength; | 135 ASH_EXPORT extern const size_t kActionsAllowedAtLockScreenLength; |
| 138 | 136 |
| 139 } // namespace ash | 137 } // namespace ash |
| 140 | 138 |
| 141 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ | 139 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ |
| OLD | NEW |