diff options
author | Sen Jiang <senj@google.com> | 2016-12-14 23:07:46 +0100 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-12-14 23:07:46 +0100 |
commit | ef45a88680ee00fe2283ee68dab884b150dc45ab (patch) | |
tree | 6066d58e37b89d85081c1f32ca5b406437b159fa /ui.h | |
parent | Merge "updater: Fix the operator order." am: 2bb3a2270e (diff) | |
parent | Merge "Add a stub recovery UI." (diff) | |
download | android_bootable_recovery-ef45a88680ee00fe2283ee68dab884b150dc45ab.tar android_bootable_recovery-ef45a88680ee00fe2283ee68dab884b150dc45ab.tar.gz android_bootable_recovery-ef45a88680ee00fe2283ee68dab884b150dc45ab.tar.bz2 android_bootable_recovery-ef45a88680ee00fe2283ee68dab884b150dc45ab.tar.lz android_bootable_recovery-ef45a88680ee00fe2283ee68dab884b150dc45ab.tar.xz android_bootable_recovery-ef45a88680ee00fe2283ee68dab884b150dc45ab.tar.zst android_bootable_recovery-ef45a88680ee00fe2283ee68dab884b150dc45ab.zip |
Diffstat (limited to 'ui.h')
-rw-r--r-- | ui.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -28,8 +28,8 @@ class RecoveryUI { virtual ~RecoveryUI() { } - // Initialize the object; called before anything else. - virtual void Init(); + // Initialize the object; called before anything else. Returns true on success. + virtual bool Init(); // Show a stage indicator. Call immediately after Init(). virtual void SetStage(int current, int max) = 0; |