| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 SELECT_WIN_1, | 49 SELECT_WIN_1, |
| 50 SELECT_WIN_2, | 50 SELECT_WIN_2, |
| 51 SELECT_WIN_3, | 51 SELECT_WIN_3, |
| 52 SELECT_WIN_4, | 52 SELECT_WIN_4, |
| 53 SELECT_WIN_5, | 53 SELECT_WIN_5, |
| 54 SELECT_WIN_6, | 54 SELECT_WIN_6, |
| 55 SELECT_WIN_7, | 55 SELECT_WIN_7, |
| 56 SHOW_KEYBOARD_OVERLAY, | 56 SHOW_KEYBOARD_OVERLAY, |
| 57 SHOW_OAK, | 57 SHOW_OAK, |
| 58 SHOW_TASK_MANAGER, | 58 SHOW_TASK_MANAGER, |
| 59 SWAP_PRIMARY_DISPLAY, |
| 59 SWITCH_IME, // Switch to another IME depending on the accelerator. | 60 SWITCH_IME, // Switch to another IME depending on the accelerator. |
| 60 TAKE_PARTIAL_SCREENSHOT, | 61 TAKE_PARTIAL_SCREENSHOT, |
| 61 TAKE_SCREENSHOT, // Control+F5 | 62 TAKE_SCREENSHOT, // Control+F5 |
| 62 TAKE_SCREENSHOT_BY_PRTSCN_KEY, // PrtScn | 63 TAKE_SCREENSHOT_BY_PRTSCN_KEY, // PrtScn |
| 63 TOGGLE_APP_LIST, | 64 TOGGLE_APP_LIST, |
| 64 TOGGLE_CAPS_LOCK, | 65 TOGGLE_CAPS_LOCK, |
| 65 TOGGLE_DESKTOP_BACKGROUND_MODE, | 66 TOGGLE_DESKTOP_BACKGROUND_MODE, |
| 66 TOGGLE_MAXIMIZED, | 67 TOGGLE_MAXIMIZED, |
| 67 TOGGLE_ROOT_WINDOW_FULL_SCREEN, | 68 TOGGLE_ROOT_WINDOW_FULL_SCREEN, |
| 68 TOGGLE_SPOKEN_FEEDBACK, | 69 TOGGLE_SPOKEN_FEEDBACK, |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 // Actions allowed while screen is locked (in addition to | 125 // Actions allowed while screen is locked (in addition to |
| 125 // kActionsAllowedAtLoginOrLockScreen). | 126 // kActionsAllowedAtLoginOrLockScreen). |
| 126 ASH_EXPORT extern const AcceleratorAction kActionsAllowedAtLockScreen[]; | 127 ASH_EXPORT extern const AcceleratorAction kActionsAllowedAtLockScreen[]; |
| 127 | 128 |
| 128 // The number of elements in kActionsAllowedAtLockScreen. | 129 // The number of elements in kActionsAllowedAtLockScreen. |
| 129 ASH_EXPORT extern const size_t kActionsAllowedAtLockScreenLength; | 130 ASH_EXPORT extern const size_t kActionsAllowedAtLockScreenLength; |
| 130 | 131 |
| 131 } // namespace ash | 132 } // namespace ash |
| 132 | 133 |
| 133 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ | 134 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ |
| OLD | NEW |