diff options
author | Elliott Hughes <enh@google.com> | 2015-04-10 19:20:04 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-04-10 19:20:04 +0200 |
commit | 6b0dd1d7e1e1f3645230f880db95cad1279a826b (patch) | |
tree | 9cd50e1cce726c3a32b440012f09d63825cfcbee /device.h | |
parent | Merge "Add ev_iterate_available_keys to minui." (diff) | |
parent | Move "Mount /system" to the main menu. (diff) | |
download | android_bootable_recovery-6b0dd1d7e1e1f3645230f880db95cad1279a826b.tar android_bootable_recovery-6b0dd1d7e1e1f3645230f880db95cad1279a826b.tar.gz android_bootable_recovery-6b0dd1d7e1e1f3645230f880db95cad1279a826b.tar.bz2 android_bootable_recovery-6b0dd1d7e1e1f3645230f880db95cad1279a826b.tar.lz android_bootable_recovery-6b0dd1d7e1e1f3645230f880db95cad1279a826b.tar.xz android_bootable_recovery-6b0dd1d7e1e1f3645230f880db95cad1279a826b.tar.zst android_bootable_recovery-6b0dd1d7e1e1f3645230f880db95cad1279a826b.zip |
Diffstat (limited to 'device.h')
-rw-r--r-- | device.h | 17 |
1 files changed, 13 insertions, 4 deletions
@@ -56,10 +56,19 @@ class Device { // - invoke a specific action (a menu position: any non-negative number) virtual int HandleMenuKey(int key, int visible) = 0; - enum BuiltinAction { NO_ACTION, REBOOT, APPLY_EXT, - APPLY_CACHE, // APPLY_CACHE is deprecated; has no effect - APPLY_ADB_SIDELOAD, WIPE_DATA, WIPE_CACHE, - REBOOT_BOOTLOADER, SHUTDOWN, READ_RECOVERY_LASTLOG }; + enum BuiltinAction { + NO_ACTION = 0, + REBOOT = 1, + APPLY_SDCARD = 2, + // APPLY_CACHE was 3. + APPLY_ADB_SIDELOAD = 4, + WIPE_DATA = 5, + WIPE_CACHE = 6, + REBOOT_BOOTLOADER = 7, + SHUTDOWN = 8, + VIEW_RECOVERY_LOGS = 9, + MOUNT_SYSTEM = 10, + }; // Return the headers (an array of strings, one per line, // NULL-terminated) for the main menu. Typically these tell users |