| 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/events/event_constants.h" | 10 #include "ui/events/event_constants.h" |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 BRIGHTNESS_DOWN, | 51 BRIGHTNESS_DOWN, |
| 52 BRIGHTNESS_UP, | 52 BRIGHTNESS_UP, |
| 53 CYCLE_BACKWARD_MRU, | 53 CYCLE_BACKWARD_MRU, |
| 54 CYCLE_FORWARD_MRU, | 54 CYCLE_FORWARD_MRU, |
| 55 DEBUG_TOGGLE_DEVICE_SCALE_FACTOR, | 55 DEBUG_TOGGLE_DEVICE_SCALE_FACTOR, |
| 56 DEBUG_TOGGLE_SHOW_DEBUG_BORDERS, | 56 DEBUG_TOGGLE_SHOW_DEBUG_BORDERS, |
| 57 DEBUG_TOGGLE_SHOW_FPS_COUNTER, | 57 DEBUG_TOGGLE_SHOW_FPS_COUNTER, |
| 58 DEBUG_TOGGLE_SHOW_PAINT_RECTS, | 58 DEBUG_TOGGLE_SHOW_PAINT_RECTS, |
| 59 DISABLE_CAPS_LOCK, | 59 DISABLE_CAPS_LOCK, |
| 60 EXIT, | 60 EXIT, |
| 61 FOCUS_LAUNCHER, | |
| 62 FOCUS_NEXT_PANE, | 61 FOCUS_NEXT_PANE, |
| 63 FOCUS_PREVIOUS_PANE, | 62 FOCUS_PREVIOUS_PANE, |
| 63 FOCUS_SHELF, |
| 64 KEYBOARD_BRIGHTNESS_DOWN, | 64 KEYBOARD_BRIGHTNESS_DOWN, |
| 65 KEYBOARD_BRIGHTNESS_UP, | 65 KEYBOARD_BRIGHTNESS_UP, |
| 66 LAUNCH_APP_0, | 66 LAUNCH_APP_0, |
| 67 LAUNCH_APP_1, | 67 LAUNCH_APP_1, |
| 68 LAUNCH_APP_2, | 68 LAUNCH_APP_2, |
| 69 LAUNCH_APP_3, | 69 LAUNCH_APP_3, |
| 70 LAUNCH_APP_4, | 70 LAUNCH_APP_4, |
| 71 LAUNCH_APP_5, | 71 LAUNCH_APP_5, |
| 72 LAUNCH_APP_6, | 72 LAUNCH_APP_6, |
| 73 LAUNCH_APP_7, | 73 LAUNCH_APP_7, |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 ASH_EXPORT extern const AcceleratorAction kActionsAllowedInAppMode[]; | 193 ASH_EXPORT extern const AcceleratorAction kActionsAllowedInAppMode[]; |
| 194 ASH_EXPORT extern const size_t kActionsAllowedInAppModeLength; | 194 ASH_EXPORT extern const size_t kActionsAllowedInAppModeLength; |
| 195 | 195 |
| 196 // Actions that require at least 1 window. | 196 // Actions that require at least 1 window. |
| 197 ASH_EXPORT extern const AcceleratorAction kActionsNeedingWindow[]; | 197 ASH_EXPORT extern const AcceleratorAction kActionsNeedingWindow[]; |
| 198 ASH_EXPORT extern const size_t kActionsNeedingWindowLength; | 198 ASH_EXPORT extern const size_t kActionsNeedingWindowLength; |
| 199 | 199 |
| 200 } // namespace ash | 200 } // namespace ash |
| 201 | 201 |
| 202 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ | 202 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ |
| OLD | NEW |