diff options
author | Doug Zongker <dougz@android.com> | 2014-03-11 22:21:33 +0100 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-03-11 22:21:33 +0100 |
commit | 5950899369b712f66aa56c857c66ed1b6741f0e0 (patch) | |
tree | 4ca17c403f8756207d6b931fd2d4c1a8309bec6e /ui.h | |
parent | Merge "change how recovery animation is implemented" (diff) | |
parent | allow CheckKey to request mounting /system (diff) | |
download | android_bootable_recovery-5950899369b712f66aa56c857c66ed1b6741f0e0.tar android_bootable_recovery-5950899369b712f66aa56c857c66ed1b6741f0e0.tar.gz android_bootable_recovery-5950899369b712f66aa56c857c66ed1b6741f0e0.tar.bz2 android_bootable_recovery-5950899369b712f66aa56c857c66ed1b6741f0e0.tar.lz android_bootable_recovery-5950899369b712f66aa56c857c66ed1b6741f0e0.tar.xz android_bootable_recovery-5950899369b712f66aa56c857c66ed1b6741f0e0.tar.zst android_bootable_recovery-5950899369b712f66aa56c857c66ed1b6741f0e0.zip |
Diffstat (limited to 'ui.h')
-rw-r--r-- | ui.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -77,7 +77,7 @@ class RecoveryUI { // Return value indicates whether an immediate operation should be // triggered (toggling the display, rebooting the device), or if // the key should be enqueued for use by the main thread. - enum KeyAction { ENQUEUE, TOGGLE, REBOOT, IGNORE }; + enum KeyAction { ENQUEUE, TOGGLE, REBOOT, IGNORE, MOUNT_SYSTEM }; virtual KeyAction CheckKey(int key); // Called immediately before each call to CheckKey(), tell you if @@ -121,6 +121,10 @@ private: int key_down_count; // under key_queue_mutex int rel_sum; + int consecutive_power_keys; + int consecutive_alternate_keys; + int last_key; + typedef struct { RecoveryUI* ui; int key_code; |