diff options
author | David Anderson <dvander@google.com> | 2019-02-21 05:07:29 +0100 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2019-02-21 05:07:29 +0100 |
commit | d294935bf7cee78cf7f017d08e714b326a5aeef9 (patch) | |
tree | e4b27f45eb173760b939c9261176047da8b0b40a /ui.h | |
parent | Merge "Defer marking boot successful when checkpointing" (diff) | |
parent | Add a logo to the fastbootd screen. (diff) | |
download | android_bootable_recovery-d294935bf7cee78cf7f017d08e714b326a5aeef9.tar android_bootable_recovery-d294935bf7cee78cf7f017d08e714b326a5aeef9.tar.gz android_bootable_recovery-d294935bf7cee78cf7f017d08e714b326a5aeef9.tar.bz2 android_bootable_recovery-d294935bf7cee78cf7f017d08e714b326a5aeef9.tar.lz android_bootable_recovery-d294935bf7cee78cf7f017d08e714b326a5aeef9.tar.xz android_bootable_recovery-d294935bf7cee78cf7f017d08e714b326a5aeef9.tar.zst android_bootable_recovery-d294935bf7cee78cf7f017d08e714b326a5aeef9.zip |
Diffstat (limited to 'ui.h')
-rw-r--r-- | ui.h | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -168,7 +168,6 @@ class RecoveryUI { virtual size_t ShowPromptWipeDataMenu(const std::vector<std::string>& backup_headers, const std::vector<std::string>& backup_items, const std::function<int(int, bool)>& key_handler) = 0; - // Displays the localized wipe data confirmation menu with pre-generated images. Falls back to // the text strings upon failures. The initial selection is the 0th item, which returns to the // upper level menu. @@ -176,6 +175,11 @@ class RecoveryUI { const std::vector<std::string>& backup_headers, const std::vector<std::string>& backup_items, const std::function<int(int, bool)>& key_handler) = 0; + // Set whether or not the fastbootd logo is displayed. + void SetEnableFastbootdLogo(bool enable) { + fastbootd_logo_enabled_ = enable; + } + // Resets the key interrupt status. void ResetKeyInterruptStatus() { key_interrupted_ = false; @@ -200,6 +204,8 @@ class RecoveryUI { // Whether we should listen for touch inputs (default: false). bool touch_screen_allowed_; + bool fastbootd_logo_enabled_; + private: enum class ScreensaverState { DISABLED, |