| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 WINDOW_MINIMIZE, | 53 WINDOW_MINIMIZE, |
| 54 WINDOW_POSITION_CENTER, | 54 WINDOW_POSITION_CENTER, |
| 55 WINDOW_SNAP_LEFT, | 55 WINDOW_SNAP_LEFT, |
| 56 WINDOW_SNAP_RIGHT, | 56 WINDOW_SNAP_RIGHT, |
| 57 #if defined(OS_CHROMEOS) | 57 #if defined(OS_CHROMEOS) |
| 58 LOCK_SCREEN, | 58 LOCK_SCREEN, |
| 59 OPEN_CROSH, | 59 OPEN_CROSH, |
| 60 OPEN_FILE_MANAGER, | 60 OPEN_FILE_MANAGER, |
| 61 #endif | 61 #endif |
| 62 #if !defined(NDEBUG) | 62 #if !defined(NDEBUG) |
| 63 MAGNIFY_SCREEN_ZOOM_IN, |
| 64 MAGNIFY_SCREEN_ZOOM_OUT, |
| 63 MONITOR_ADD_REMOVE, | 65 MONITOR_ADD_REMOVE, |
| 64 MONITOR_CYCLE, | 66 MONITOR_CYCLE, |
| 65 MONITOR_TOGGLE_SCALE, | 67 MONITOR_TOGGLE_SCALE, |
| 66 PRINT_LAYER_HIERARCHY, | 68 PRINT_LAYER_HIERARCHY, |
| 67 PRINT_WINDOW_HIERARCHY, | 69 PRINT_WINDOW_HIERARCHY, |
| 68 ROTATE_SCREEN, | 70 ROTATE_SCREEN, |
| 69 TOGGLE_DESKTOP_BACKGROUND_MODE, | 71 TOGGLE_DESKTOP_BACKGROUND_MODE, |
| 70 TOGGLE_ROOT_WINDOW_FULL_SCREEN, | 72 TOGGLE_ROOT_WINDOW_FULL_SCREEN, |
| 71 #endif | 73 #endif |
| 72 }; | 74 }; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 86 | 88 |
| 87 // Actions allowed while user is not signed in or screen is locked. | 89 // Actions allowed while user is not signed in or screen is locked. |
| 88 ASH_EXPORT extern const AcceleratorAction kActionsAllowedAtLoginScreen[]; | 90 ASH_EXPORT extern const AcceleratorAction kActionsAllowedAtLoginScreen[]; |
| 89 | 91 |
| 90 // The number of elements in kActionsAllowedAtLoginScreen. | 92 // The number of elements in kActionsAllowedAtLoginScreen. |
| 91 ASH_EXPORT extern const size_t kActionsAllowedAtLoginScreenLength; | 93 ASH_EXPORT extern const size_t kActionsAllowedAtLoginScreenLength; |
| 92 | 94 |
| 93 } // namespace ash | 95 } // namespace ash |
| 94 | 96 |
| 95 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ | 97 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ |
| OLD | NEW |