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 "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "ui/base/events/event_constants.h" | 10 #include "ui/base/events/event_constants.h" |
(...skipping 10 matching lines...) Expand all Loading... |
21 BRIGHTNESS_UP, | 21 BRIGHTNESS_UP, |
22 CYCLE_BACKWARD_LINEAR, | 22 CYCLE_BACKWARD_LINEAR, |
23 CYCLE_BACKWARD_MRU, | 23 CYCLE_BACKWARD_MRU, |
24 CYCLE_FORWARD_LINEAR, | 24 CYCLE_FORWARD_LINEAR, |
25 CYCLE_FORWARD_MRU, | 25 CYCLE_FORWARD_MRU, |
26 DEBUG_TOGGLE_DEVICE_SCALE_FACTOR, | 26 DEBUG_TOGGLE_DEVICE_SCALE_FACTOR, |
27 DEBUG_TOGGLE_SHOW_DEBUG_BORDERS, | 27 DEBUG_TOGGLE_SHOW_DEBUG_BORDERS, |
28 DEBUG_TOGGLE_SHOW_FPS_COUNTER, | 28 DEBUG_TOGGLE_SHOW_FPS_COUNTER, |
29 DEBUG_TOGGLE_SHOW_PAINT_RECTS, | 29 DEBUG_TOGGLE_SHOW_PAINT_RECTS, |
30 DISABLE_CAPS_LOCK, | 30 DISABLE_CAPS_LOCK, |
31 EXIT_PRESSED, | 31 EXIT, |
32 EXIT_RELEASED, | |
33 FOCUS_LAUNCHER, | 32 FOCUS_LAUNCHER, |
34 FOCUS_NEXT_PANE, | 33 FOCUS_NEXT_PANE, |
35 FOCUS_PREVIOUS_PANE, | 34 FOCUS_PREVIOUS_PANE, |
36 KEYBOARD_BRIGHTNESS_DOWN, | 35 KEYBOARD_BRIGHTNESS_DOWN, |
37 KEYBOARD_BRIGHTNESS_UP, | 36 KEYBOARD_BRIGHTNESS_UP, |
38 LOCK_PRESSED, | 37 LOCK_PRESSED, |
39 LOCK_RELEASED, | 38 LOCK_RELEASED, |
40 MAGNIFY_SCREEN_ZOOM_IN, | 39 MAGNIFY_SCREEN_ZOOM_IN, |
41 MAGNIFY_SCREEN_ZOOM_OUT, | 40 MAGNIFY_SCREEN_ZOOM_OUT, |
42 MEDIA_NEXT_TRACK, | 41 MEDIA_NEXT_TRACK, |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 | 169 |
171 // Actions allowed in app mode. | 170 // Actions allowed in app mode. |
172 ASH_EXPORT extern const AcceleratorAction kActionsAllowedInAppMode[]; | 171 ASH_EXPORT extern const AcceleratorAction kActionsAllowedInAppMode[]; |
173 | 172 |
174 // The number of elements in kActionsAllowedInAppMode. | 173 // The number of elements in kActionsAllowedInAppMode. |
175 ASH_EXPORT extern const size_t kActionsAllowedInAppModeLength; | 174 ASH_EXPORT extern const size_t kActionsAllowedInAppModeLength; |
176 | 175 |
177 } // namespace ash | 176 } // namespace ash |
178 | 177 |
179 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ | 178 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ |
OLD | NEW |