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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 NEXT_IME, | 86 NEXT_IME, |
87 OPEN_FEEDBACK_PAGE, | 87 OPEN_FEEDBACK_PAGE, |
88 PREVIOUS_IME, | 88 PREVIOUS_IME, |
89 PRINT_UI_HIERARCHIES, | 89 PRINT_UI_HIERARCHIES, |
90 RESTORE_TAB, | 90 RESTORE_TAB, |
91 ROTATE_SCREEN, | 91 ROTATE_SCREEN, |
92 ROTATE_WINDOW, | 92 ROTATE_WINDOW, |
93 SCALE_UI_DOWN, | 93 SCALE_UI_DOWN, |
94 SCALE_UI_RESET, | 94 SCALE_UI_RESET, |
95 SCALE_UI_UP, | 95 SCALE_UI_UP, |
| 96 SHOW_TEST_SHELL_SURFACE_OVERLAY, |
| 97 SHOW_FULLSCREEN_TEST_SHELL_SURFACE_OVERLAY, |
96 SHOW_KEYBOARD_OVERLAY, | 98 SHOW_KEYBOARD_OVERLAY, |
97 SHOW_MESSAGE_CENTER_BUBBLE, | 99 SHOW_MESSAGE_CENTER_BUBBLE, |
98 SHOW_SYSTEM_TRAY_BUBBLE, | 100 SHOW_SYSTEM_TRAY_BUBBLE, |
99 SHOW_TASK_MANAGER, | 101 SHOW_TASK_MANAGER, |
100 SWITCH_IME, // Switch to another IME depending on the accelerator. | 102 SWITCH_IME, // Switch to another IME depending on the accelerator. |
101 TAKE_PARTIAL_SCREENSHOT, | 103 TAKE_PARTIAL_SCREENSHOT, |
102 TAKE_SCREENSHOT, | 104 TAKE_SCREENSHOT, |
103 TOGGLE_APP_LIST, | 105 TOGGLE_APP_LIST, |
104 TOGGLE_FULLSCREEN, | 106 TOGGLE_FULLSCREEN, |
105 TOGGLE_MAXIMIZED, | 107 TOGGLE_MAXIMIZED, |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
229 ASH_EXPORT extern const AcceleratorAction kActionsNeedingWindow[]; | 231 ASH_EXPORT extern const AcceleratorAction kActionsNeedingWindow[]; |
230 ASH_EXPORT extern const size_t kActionsNeedingWindowLength; | 232 ASH_EXPORT extern const size_t kActionsNeedingWindowLength; |
231 | 233 |
232 // Actions that can be performed while keeping the menu open. | 234 // Actions that can be performed while keeping the menu open. |
233 ASH_EXPORT extern const AcceleratorAction kActionsKeepingMenuOpen[]; | 235 ASH_EXPORT extern const AcceleratorAction kActionsKeepingMenuOpen[]; |
234 ASH_EXPORT extern const size_t kActionsKeepingMenuOpenLength; | 236 ASH_EXPORT extern const size_t kActionsKeepingMenuOpenLength; |
235 | 237 |
236 } // namespace ash | 238 } // namespace ash |
237 | 239 |
238 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ | 240 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ |
OLD | NEW |