| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 SELECT_LAST_WIN, | 50 SELECT_LAST_WIN, |
| 51 SELECT_WIN_0, | 51 SELECT_WIN_0, |
| 52 SELECT_WIN_1, | 52 SELECT_WIN_1, |
| 53 SELECT_WIN_2, | 53 SELECT_WIN_2, |
| 54 SELECT_WIN_3, | 54 SELECT_WIN_3, |
| 55 SELECT_WIN_4, | 55 SELECT_WIN_4, |
| 56 SELECT_WIN_5, | 56 SELECT_WIN_5, |
| 57 SELECT_WIN_6, | 57 SELECT_WIN_6, |
| 58 SELECT_WIN_7, | 58 SELECT_WIN_7, |
| 59 SHOW_KEYBOARD_OVERLAY, | 59 SHOW_KEYBOARD_OVERLAY, |
| 60 SHOW_MESSAGE_CENTER_BUBBLE, |
| 60 SHOW_OAK, | 61 SHOW_OAK, |
| 61 SHOW_SYSTEM_TRAY_BUBBLE, | 62 SHOW_SYSTEM_TRAY_BUBBLE, |
| 62 SHOW_TASK_MANAGER, | 63 SHOW_TASK_MANAGER, |
| 63 SWAP_PRIMARY_DISPLAY, | 64 SWAP_PRIMARY_DISPLAY, |
| 64 SWITCH_IME, // Switch to another IME depending on the accelerator. | 65 SWITCH_IME, // Switch to another IME depending on the accelerator. |
| 65 TAKE_PARTIAL_SCREENSHOT, | 66 TAKE_PARTIAL_SCREENSHOT, |
| 66 TAKE_SCREENSHOT, | 67 TAKE_SCREENSHOT, |
| 67 TOGGLE_APP_LIST, | 68 TOGGLE_APP_LIST, |
| 68 TOGGLE_CAPS_LOCK, | 69 TOGGLE_CAPS_LOCK, |
| 69 TOGGLE_CAPS_LOCK_BY_ALT_LWIN, | 70 TOGGLE_CAPS_LOCK_BY_ALT_LWIN, |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 | 144 |
| 144 // Actions which will not be repeated while holding an accelerator key. | 145 // Actions which will not be repeated while holding an accelerator key. |
| 145 ASH_EXPORT extern const AcceleratorAction kNonrepeatableActions[]; | 146 ASH_EXPORT extern const AcceleratorAction kNonrepeatableActions[]; |
| 146 | 147 |
| 147 // The number of elements in kNonrepeatableActions. | 148 // The number of elements in kNonrepeatableActions. |
| 148 ASH_EXPORT extern const size_t kNonrepeatableActionsLength; | 149 ASH_EXPORT extern const size_t kNonrepeatableActionsLength; |
| 149 | 150 |
| 150 } // namespace ash | 151 } // namespace ash |
| 151 | 152 |
| 152 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ | 153 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ |
| OLD | NEW |