Index: ash/accelerators/accelerator_table.h |
diff --git a/ash/accelerators/accelerator_table.h b/ash/accelerators/accelerator_table.h |
index b7b60e33ab6fa053d8e6e2ace1ec7e0dc6f30635..f77f02440fdf5a2042cf3e112edfa775a868ef0e 100644 |
--- a/ash/accelerators/accelerator_table.h |
+++ b/ash/accelerators/accelerator_table.h |
@@ -136,6 +136,8 @@ enum AcceleratorAction { |
OPEN_FILE_MANAGER, |
SWITCH_TO_NEXT_USER, |
SWITCH_TO_PREVIOUS_USER, |
+#else |
+ DUMMY_FOR_RESERVED, |
#endif |
}; |
@@ -163,6 +165,10 @@ ASH_EXPORT extern const size_t kDebugAcceleratorDataLength; |
// Actions that should be handled very early in Ash unless the current target |
// window is full-screen. |
+ASH_EXPORT extern const AcceleratorAction kPreferredActions[]; |
+ASH_EXPORT extern const size_t kPreferredActionsLength; |
+ |
+// Actions that are always handled in Ash |
James Cook
2014/09/19 16:13:15
nit: end with .
oshima
2014/09/19 18:55:19
Done.
|
ASH_EXPORT extern const AcceleratorAction kReservedActions[]; |
ASH_EXPORT extern const size_t kReservedActionsLength; |