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_COMMON_ACCELERATORS_ACCELERATOR_TABLE_H_ | 5 #ifndef ASH_COMMON_ACCELERATORS_ACCELERATOR_TABLE_H_ |
6 #define ASH_COMMON_ACCELERATORS_ACCELERATOR_TABLE_H_ | 6 #define ASH_COMMON_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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 POWER_PRESSED, | 133 POWER_PRESSED, |
134 POWER_RELEASED, | 134 POWER_RELEASED, |
135 SUSPEND, | 135 SUSPEND, |
| 136 SHOW_STYLUS_TOOLS, |
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, |
143 TOUCH_HUD_CLEAR, | 144 TOUCH_HUD_CLEAR, |
144 TOUCH_HUD_MODE_CHANGE, | 145 TOUCH_HUD_MODE_CHANGE, |
145 TOUCH_HUD_PROJECTION_TOGGLE, | 146 TOUCH_HUD_PROJECTION_TOGGLE, |
(...skipping 106 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_COMMON_ACCELERATORS_ACCELERATOR_TABLE_H_ | 262 #endif // ASH_COMMON_ACCELERATORS_ACCELERATOR_TABLE_H_ |
OLD | NEW |