diff options
author | Tao Bao <tbao@google.com> | 2018-05-01 22:40:29 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2018-05-01 22:40:29 +0200 |
commit | a2f44ebd09ad929ee0669be9d217cf07d26f4770 (patch) | |
tree | 03eda9404b106cff6d8186940355c7b957ec0ea2 /wear_ui.h | |
parent | Merge "updater_sample: add FileDownloader" (diff) | |
parent | Merge "Add ScreenRecoveryUI::ShowMenu()." (diff) | |
download | android_bootable_recovery-a2f44ebd09ad929ee0669be9d217cf07d26f4770.tar android_bootable_recovery-a2f44ebd09ad929ee0669be9d217cf07d26f4770.tar.gz android_bootable_recovery-a2f44ebd09ad929ee0669be9d217cf07d26f4770.tar.bz2 android_bootable_recovery-a2f44ebd09ad929ee0669be9d217cf07d26f4770.tar.lz android_bootable_recovery-a2f44ebd09ad929ee0669be9d217cf07d26f4770.tar.xz android_bootable_recovery-a2f44ebd09ad929ee0669be9d217cf07d26f4770.tar.zst android_bootable_recovery-a2f44ebd09ad929ee0669be9d217cf07d26f4770.zip |
Diffstat (limited to 'wear_ui.h')
-rw-r--r-- | wear_ui.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -25,9 +25,6 @@ class WearRecoveryUI : public ScreenRecoveryUI { void SetStage(int current, int max) override; - void StartMenu(const char* const* headers, const char* const* items, - int initial_selection) override; - protected: // progress bar vertical position, it's centered horizontally const int kProgressBarBaseline; @@ -36,6 +33,9 @@ class WearRecoveryUI : public ScreenRecoveryUI { // Recovery, build id and etc) and the bottom lines that may otherwise go out of the screen. const int kMenuUnusableRows; + void StartMenu(const char* const* headers, const char* const* items, + int initial_selection) override; + int GetProgressBaseline() const override; void update_progress_locked() override; |