| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "ash/ash_export.h" | 9 #include "ash/ash_export.h" |
| 10 #include "ui/aura/event.h" | 10 #include "ui/aura/event.h" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 EXIT, | 23 EXIT, |
| 24 FOCUS_LAUNCHER, | 24 FOCUS_LAUNCHER, |
| 25 FOCUS_SYSTEM_TRAY, | 25 FOCUS_SYSTEM_TRAY, |
| 26 NEW_INCOGNITO_WINDOW, | 26 NEW_INCOGNITO_WINDOW, |
| 27 NEW_TAB, | 27 NEW_TAB, |
| 28 NEW_WINDOW, | 28 NEW_WINDOW, |
| 29 NEXT_IME, | 29 NEXT_IME, |
| 30 PREVIOUS_IME, | 30 PREVIOUS_IME, |
| 31 RESTORE_TAB, | 31 RESTORE_TAB, |
| 32 ROTATE_WINDOWS, | 32 ROTATE_WINDOWS, |
| 33 SEARCH_KEY, | |
| 34 SELECT_LAST_WIN, | 33 SELECT_LAST_WIN, |
| 35 SELECT_WIN_0, | 34 SELECT_WIN_0, |
| 36 SELECT_WIN_1, | 35 SELECT_WIN_1, |
| 37 SELECT_WIN_2, | 36 SELECT_WIN_2, |
| 38 SELECT_WIN_3, | 37 SELECT_WIN_3, |
| 39 SELECT_WIN_4, | 38 SELECT_WIN_4, |
| 40 SELECT_WIN_5, | 39 SELECT_WIN_5, |
| 41 SELECT_WIN_6, | 40 SELECT_WIN_6, |
| 42 SELECT_WIN_7, | 41 SELECT_WIN_7, |
| 43 SHOW_KEYBOARD_OVERLAY, | 42 SHOW_KEYBOARD_OVERLAY, |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 // Actions allowed while screen is locked (in addition to | 96 // Actions allowed while screen is locked (in addition to |
| 98 // kActionsAllowedAtLoginOrLockScreen). | 97 // kActionsAllowedAtLoginOrLockScreen). |
| 99 ASH_EXPORT extern const AcceleratorAction kActionsAllowedAtLockScreen[]; | 98 ASH_EXPORT extern const AcceleratorAction kActionsAllowedAtLockScreen[]; |
| 100 | 99 |
| 101 // The number of elements in kActionsAllowedAtLockScreen. | 100 // The number of elements in kActionsAllowedAtLockScreen. |
| 102 ASH_EXPORT extern const size_t kActionsAllowedAtLockScreenLength; | 101 ASH_EXPORT extern const size_t kActionsAllowedAtLockScreenLength; |
| 103 | 102 |
| 104 } // namespace ash | 103 } // namespace ash |
| 105 | 104 |
| 106 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ | 105 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ |
| OLD | NEW |