| 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 28 matching lines...) Expand all Loading... |
| 39 SELECT_WIN_4, | 39 SELECT_WIN_4, |
| 40 SELECT_WIN_5, | 40 SELECT_WIN_5, |
| 41 SELECT_WIN_6, | 41 SELECT_WIN_6, |
| 42 SELECT_WIN_7, | 42 SELECT_WIN_7, |
| 43 SHOW_KEYBOARD_OVERLAY, | 43 SHOW_KEYBOARD_OVERLAY, |
| 44 SHOW_OAK, | 44 SHOW_OAK, |
| 45 SHOW_TASK_MANAGER, | 45 SHOW_TASK_MANAGER, |
| 46 SWITCH_IME, // Switch to another IME depending on the accelerator. | 46 SWITCH_IME, // Switch to another IME depending on the accelerator. |
| 47 TAKE_PARTIAL_SCREENSHOT, | 47 TAKE_PARTIAL_SCREENSHOT, |
| 48 TAKE_SCREENSHOT, | 48 TAKE_SCREENSHOT, |
| 49 TOGGLE_APP_LIST, | |
| 50 TOGGLE_CAPS_LOCK, | 49 TOGGLE_CAPS_LOCK, |
| 51 TOGGLE_SPOKEN_FEEDBACK, | 50 TOGGLE_SPOKEN_FEEDBACK, |
| 52 VOLUME_DOWN, | 51 VOLUME_DOWN, |
| 53 VOLUME_MUTE, | 52 VOLUME_MUTE, |
| 54 VOLUME_UP, | 53 VOLUME_UP, |
| 55 WINDOW_MAXIMIZE_RESTORE, | 54 WINDOW_MAXIMIZE_RESTORE, |
| 56 WINDOW_MINIMIZE, | 55 WINDOW_MINIMIZE, |
| 57 WINDOW_POSITION_CENTER, | 56 WINDOW_POSITION_CENTER, |
| 58 WINDOW_SNAP_LEFT, | 57 WINDOW_SNAP_LEFT, |
| 59 WINDOW_SNAP_RIGHT, | 58 WINDOW_SNAP_RIGHT, |
| (...skipping 37 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 |