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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 ROTATE_WINDOW, | 113 ROTATE_WINDOW, |
114 SCALE_UI_DOWN, | 114 SCALE_UI_DOWN, |
115 SCALE_UI_RESET, | 115 SCALE_UI_RESET, |
116 SCALE_UI_UP, | 116 SCALE_UI_UP, |
117 SHOW_IME_MENU_BUBBLE, | 117 SHOW_IME_MENU_BUBBLE, |
118 SHOW_KEYBOARD_OVERLAY, | 118 SHOW_KEYBOARD_OVERLAY, |
119 SHOW_MESSAGE_CENTER_BUBBLE, | 119 SHOW_MESSAGE_CENTER_BUBBLE, |
120 SHOW_STYLUS_TOOLS, | 120 SHOW_STYLUS_TOOLS, |
121 SHOW_SYSTEM_TRAY_BUBBLE, | 121 SHOW_SYSTEM_TRAY_BUBBLE, |
122 SHOW_TASK_MANAGER, | 122 SHOW_TASK_MANAGER, |
| 123 START_VOICE_INTERACTION, |
123 SUSPEND, | 124 SUSPEND, |
124 SWAP_PRIMARY_DISPLAY, | 125 SWAP_PRIMARY_DISPLAY, |
125 SWITCH_IME, // Switch to another IME depending on the accelerator. | 126 SWITCH_IME, // Switch to another IME depending on the accelerator. |
126 SWITCH_TO_NEXT_USER, | 127 SWITCH_TO_NEXT_USER, |
127 SWITCH_TO_PREVIOUS_USER, | 128 SWITCH_TO_PREVIOUS_USER, |
128 TAKE_PARTIAL_SCREENSHOT, | 129 TAKE_PARTIAL_SCREENSHOT, |
129 TAKE_SCREENSHOT, | 130 TAKE_SCREENSHOT, |
130 TAKE_WINDOW_SCREENSHOT, | 131 TAKE_WINDOW_SCREENSHOT, |
131 TOGGLE_APP_LIST, | 132 TOGGLE_APP_LIST, |
132 TOGGLE_CAPS_LOCK, | 133 TOGGLE_CAPS_LOCK, |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
255 ASH_EXPORT extern const AcceleratorAction kActionsNeedingWindow[]; | 256 ASH_EXPORT extern const AcceleratorAction kActionsNeedingWindow[]; |
256 ASH_EXPORT extern const size_t kActionsNeedingWindowLength; | 257 ASH_EXPORT extern const size_t kActionsNeedingWindowLength; |
257 | 258 |
258 // Actions that can be performed while keeping the menu open. | 259 // Actions that can be performed while keeping the menu open. |
259 ASH_EXPORT extern const AcceleratorAction kActionsKeepingMenuOpen[]; | 260 ASH_EXPORT extern const AcceleratorAction kActionsKeepingMenuOpen[]; |
260 ASH_EXPORT extern const size_t kActionsKeepingMenuOpenLength; | 261 ASH_EXPORT extern const size_t kActionsKeepingMenuOpenLength; |
261 | 262 |
262 } // namespace ash | 263 } // namespace ash |
263 | 264 |
264 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ | 265 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ |
OLD | NEW |