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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 KEYBOARD_BRIGHTNESS_DOWN, | 121 KEYBOARD_BRIGHTNESS_DOWN, |
122 KEYBOARD_BRIGHTNESS_UP, | 122 KEYBOARD_BRIGHTNESS_UP, |
123 LOCK_PRESSED, | 123 LOCK_PRESSED, |
124 LOCK_RELEASED, | 124 LOCK_RELEASED, |
125 LOCK_SCREEN, | 125 LOCK_SCREEN, |
126 OPEN_CROSH, | 126 OPEN_CROSH, |
127 OPEN_FILE_MANAGER, | 127 OPEN_FILE_MANAGER, |
128 OPEN_GET_HELP, | 128 OPEN_GET_HELP, |
129 POWER_PRESSED, | 129 POWER_PRESSED, |
130 POWER_RELEASED, | 130 POWER_RELEASED, |
131 SILENCE_SPOKEN_FEEDBACK, | |
132 SWAP_PRIMARY_DISPLAY, | 131 SWAP_PRIMARY_DISPLAY, |
133 SWITCH_TO_NEXT_USER, | 132 SWITCH_TO_NEXT_USER, |
134 SWITCH_TO_PREVIOUS_USER, | 133 SWITCH_TO_PREVIOUS_USER, |
135 TOGGLE_CAPS_LOCK, | 134 TOGGLE_CAPS_LOCK, |
136 TOGGLE_MIRROR_MODE, | 135 TOGGLE_MIRROR_MODE, |
137 TOGGLE_SPOKEN_FEEDBACK, | 136 TOGGLE_SPOKEN_FEEDBACK, |
138 TOGGLE_TOUCH_VIEW_TESTING, | 137 TOGGLE_TOUCH_VIEW_TESTING, |
139 TOGGLE_WIFI, | 138 TOGGLE_WIFI, |
140 TOUCH_HUD_CLEAR, | 139 TOUCH_HUD_CLEAR, |
141 TOUCH_HUD_MODE_CHANGE, | 140 TOUCH_HUD_MODE_CHANGE, |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
242 ASH_EXPORT extern const AcceleratorAction kActionsNeedingWindow[]; | 241 ASH_EXPORT extern const AcceleratorAction kActionsNeedingWindow[]; |
243 ASH_EXPORT extern const size_t kActionsNeedingWindowLength; | 242 ASH_EXPORT extern const size_t kActionsNeedingWindowLength; |
244 | 243 |
245 // Actions that can be performed while keeping the menu open. | 244 // Actions that can be performed while keeping the menu open. |
246 ASH_EXPORT extern const AcceleratorAction kActionsKeepingMenuOpen[]; | 245 ASH_EXPORT extern const AcceleratorAction kActionsKeepingMenuOpen[]; |
247 ASH_EXPORT extern const size_t kActionsKeepingMenuOpenLength; | 246 ASH_EXPORT extern const size_t kActionsKeepingMenuOpenLength; |
248 | 247 |
249 } // namespace ash | 248 } // namespace ash |
250 | 249 |
251 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ | 250 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ |
OLD | NEW |