| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include "ash/ash_export.h" | 10 #include "ash/ash_export.h" |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 DISABLE_CAPS_LOCK, | 123 DISABLE_CAPS_LOCK, |
| 124 DISABLE_GPU_WATCHDOG, | 124 DISABLE_GPU_WATCHDOG, |
| 125 KEYBOARD_BRIGHTNESS_DOWN, | 125 KEYBOARD_BRIGHTNESS_DOWN, |
| 126 KEYBOARD_BRIGHTNESS_UP, | 126 KEYBOARD_BRIGHTNESS_UP, |
| 127 LOCK_PRESSED, | 127 LOCK_PRESSED, |
| 128 LOCK_RELEASED, | 128 LOCK_RELEASED, |
| 129 LOCK_SCREEN, | 129 LOCK_SCREEN, |
| 130 OPEN_CROSH, | 130 OPEN_CROSH, |
| 131 OPEN_FILE_MANAGER, | 131 OPEN_FILE_MANAGER, |
| 132 OPEN_GET_HELP, | 132 OPEN_GET_HELP, |
| 133 OPEN_NETWORK_DIAG, |
| 133 POWER_PRESSED, | 134 POWER_PRESSED, |
| 134 POWER_RELEASED, | 135 POWER_RELEASED, |
| 135 SUSPEND, | 136 SUSPEND, |
| 136 SWAP_PRIMARY_DISPLAY, | 137 SWAP_PRIMARY_DISPLAY, |
| 137 SWITCH_TO_NEXT_USER, | 138 SWITCH_TO_NEXT_USER, |
| 138 SWITCH_TO_PREVIOUS_USER, | 139 SWITCH_TO_PREVIOUS_USER, |
| 139 TOGGLE_CAPS_LOCK, | 140 TOGGLE_CAPS_LOCK, |
| 140 TOGGLE_MIRROR_MODE, | 141 TOGGLE_MIRROR_MODE, |
| 141 TOGGLE_SPOKEN_FEEDBACK, | 142 TOGGLE_SPOKEN_FEEDBACK, |
| 142 TOGGLE_WIFI, | 143 TOGGLE_WIFI, |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 ASH_EXPORT extern const AcceleratorAction kActionsNeedingWindow[]; | 253 ASH_EXPORT extern const AcceleratorAction kActionsNeedingWindow[]; |
| 253 ASH_EXPORT extern const size_t kActionsNeedingWindowLength; | 254 ASH_EXPORT extern const size_t kActionsNeedingWindowLength; |
| 254 | 255 |
| 255 // Actions that can be performed while keeping the menu open. | 256 // Actions that can be performed while keeping the menu open. |
| 256 ASH_EXPORT extern const AcceleratorAction kActionsKeepingMenuOpen[]; | 257 ASH_EXPORT extern const AcceleratorAction kActionsKeepingMenuOpen[]; |
| 257 ASH_EXPORT extern const size_t kActionsKeepingMenuOpenLength; | 258 ASH_EXPORT extern const size_t kActionsKeepingMenuOpenLength; |
| 258 | 259 |
| 259 } // namespace ash | 260 } // namespace ash |
| 260 | 261 |
| 261 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ | 262 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ |
| OLD | NEW |