| 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/aura/event.h" | 9 #include "ui/aura/event.h" |
| 10 | 10 |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 SHOW_TASK_MANAGER, | 54 SHOW_TASK_MANAGER, |
| 55 SWITCH_IME, // Switch to another IME depending on the accelerator. | 55 SWITCH_IME, // Switch to another IME depending on the accelerator. |
| 56 TAKE_PARTIAL_SCREENSHOT, | 56 TAKE_PARTIAL_SCREENSHOT, |
| 57 TAKE_SCREENSHOT, // Control+F5 | 57 TAKE_SCREENSHOT, // Control+F5 |
| 58 TAKE_SCREENSHOT_BY_PRTSCN_KEY, // PrtScn | 58 TAKE_SCREENSHOT_BY_PRTSCN_KEY, // PrtScn |
| 59 TOGGLE_APP_LIST, | 59 TOGGLE_APP_LIST, |
| 60 TOGGLE_CAPS_LOCK, | 60 TOGGLE_CAPS_LOCK, |
| 61 TOGGLE_DESKTOP_BACKGROUND_MODE, | 61 TOGGLE_DESKTOP_BACKGROUND_MODE, |
| 62 TOGGLE_ROOT_WINDOW_FULL_SCREEN, | 62 TOGGLE_ROOT_WINDOW_FULL_SCREEN, |
| 63 TOGGLE_SPOKEN_FEEDBACK, | 63 TOGGLE_SPOKEN_FEEDBACK, |
| 64 TOGGLE_WIFI, |
| 64 VOLUME_DOWN, | 65 VOLUME_DOWN, |
| 65 VOLUME_MUTE, | 66 VOLUME_MUTE, |
| 66 VOLUME_UP, | 67 VOLUME_UP, |
| 67 WINDOW_MAXIMIZE_RESTORE, | 68 WINDOW_MAXIMIZE_RESTORE, |
| 68 WINDOW_MINIMIZE, | 69 WINDOW_MINIMIZE, |
| 69 WINDOW_POSITION_CENTER, | 70 WINDOW_POSITION_CENTER, |
| 70 WINDOW_SNAP_LEFT, | 71 WINDOW_SNAP_LEFT, |
| 71 WINDOW_SNAP_RIGHT, | 72 WINDOW_SNAP_RIGHT, |
| 72 #if defined(OS_CHROMEOS) | 73 #if defined(OS_CHROMEOS) |
| 73 CYCLE_DISPLAY_MODE, | 74 CYCLE_DISPLAY_MODE, |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 // Actions allowed while screen is locked (in addition to | 120 // Actions allowed while screen is locked (in addition to |
| 120 // kActionsAllowedAtLoginOrLockScreen). | 121 // kActionsAllowedAtLoginOrLockScreen). |
| 121 ASH_EXPORT extern const AcceleratorAction kActionsAllowedAtLockScreen[]; | 122 ASH_EXPORT extern const AcceleratorAction kActionsAllowedAtLockScreen[]; |
| 122 | 123 |
| 123 // The number of elements in kActionsAllowedAtLockScreen. | 124 // The number of elements in kActionsAllowedAtLockScreen. |
| 124 ASH_EXPORT extern const size_t kActionsAllowedAtLockScreenLength; | 125 ASH_EXPORT extern const size_t kActionsAllowedAtLockScreenLength; |
| 125 | 126 |
| 126 } // namespace ash | 127 } // namespace ash |
| 127 | 128 |
| 128 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ | 129 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ |
| OLD | NEW |