| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 TOGGLE_CAPS_LOCK, | 82 TOGGLE_CAPS_LOCK, |
| 83 TOGGLE_CAPS_LOCK_BY_ALT_LWIN, | 83 TOGGLE_CAPS_LOCK_BY_ALT_LWIN, |
| 84 TOGGLE_DESKTOP_BACKGROUND_MODE, | 84 TOGGLE_DESKTOP_BACKGROUND_MODE, |
| 85 TOGGLE_FULLSCREEN, | 85 TOGGLE_FULLSCREEN, |
| 86 TOGGLE_MAXIMIZED, | 86 TOGGLE_MAXIMIZED, |
| 87 TOGGLE_ROOT_WINDOW_FULL_SCREEN, | 87 TOGGLE_ROOT_WINDOW_FULL_SCREEN, |
| 88 TOGGLE_SPOKEN_FEEDBACK, | 88 TOGGLE_SPOKEN_FEEDBACK, |
| 89 TOGGLE_WIFI, | 89 TOGGLE_WIFI, |
| 90 TOUCH_HUD_CLEAR, | 90 TOUCH_HUD_CLEAR, |
| 91 TOUCH_HUD_MODE_CHANGE, | 91 TOUCH_HUD_MODE_CHANGE, |
| 92 TOUCH_HUD_PROJECTION_TOGGLE, |
| 92 VOLUME_DOWN, | 93 VOLUME_DOWN, |
| 93 VOLUME_MUTE, | 94 VOLUME_MUTE, |
| 94 VOLUME_UP, | 95 VOLUME_UP, |
| 95 WINDOW_MINIMIZE, | 96 WINDOW_MINIMIZE, |
| 96 WINDOW_POSITION_CENTER, | 97 WINDOW_POSITION_CENTER, |
| 97 WINDOW_SNAP_LEFT, | 98 WINDOW_SNAP_LEFT, |
| 98 WINDOW_SNAP_RIGHT, | 99 WINDOW_SNAP_RIGHT, |
| 99 #if defined(OS_CHROMEOS) | 100 #if defined(OS_CHROMEOS) |
| 100 ADD_REMOVE_DISPLAY, | 101 ADD_REMOVE_DISPLAY, |
| 101 TOGGLE_MIRROR_MODE, | 102 TOGGLE_MIRROR_MODE, |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 | 178 |
| 178 // Actions allowed in app mode. | 179 // Actions allowed in app mode. |
| 179 ASH_EXPORT extern const AcceleratorAction kActionsAllowedInAppMode[]; | 180 ASH_EXPORT extern const AcceleratorAction kActionsAllowedInAppMode[]; |
| 180 | 181 |
| 181 // The number of elements in kActionsAllowedInAppMode. | 182 // The number of elements in kActionsAllowedInAppMode. |
| 182 ASH_EXPORT extern const size_t kActionsAllowedInAppModeLength; | 183 ASH_EXPORT extern const size_t kActionsAllowedInAppModeLength; |
| 183 | 184 |
| 184 } // namespace ash | 185 } // namespace ash |
| 185 | 186 |
| 186 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ | 187 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ |
| OLD | NEW |