diff options
author | Elliott Hughes <enh@google.com> | 2015-04-09 20:24:45 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-04-09 20:24:45 +0200 |
commit | 52222a58417e7e6349e91e19e4f5e293a3a971c5 (patch) | |
tree | 07456a6307d1804376d51214e49698e2887ac1be /verifier_test.cpp | |
parent | Merge "Enable printf format argument checking." (diff) | |
parent | Move file paging into ScreenRecoveryUI. (diff) | |
download | android_bootable_recovery-52222a58417e7e6349e91e19e4f5e293a3a971c5.tar android_bootable_recovery-52222a58417e7e6349e91e19e4f5e293a3a971c5.tar.gz android_bootable_recovery-52222a58417e7e6349e91e19e4f5e293a3a971c5.tar.bz2 android_bootable_recovery-52222a58417e7e6349e91e19e4f5e293a3a971c5.tar.lz android_bootable_recovery-52222a58417e7e6349e91e19e4f5e293a3a971c5.tar.xz android_bootable_recovery-52222a58417e7e6349e91e19e4f5e293a3a971c5.tar.zst android_bootable_recovery-52222a58417e7e6349e91e19e4f5e293a3a971c5.zip |
Diffstat (limited to 'verifier_test.cpp')
-rw-r--r-- | verifier_test.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/verifier_test.cpp b/verifier_test.cpp index 93a071e37..82546edce 100644 --- a/verifier_test.cpp +++ b/verifier_test.cpp @@ -124,6 +124,8 @@ RecoveryUI* ui = NULL; // nothing but print. class FakeUI : public RecoveryUI { void Init() { } + void SetStage(int, int) { } + void SetLocale(const char*) { } void SetBackground(Icon icon) { } void SetProgressType(ProgressType determinate) { } @@ -139,6 +141,7 @@ class FakeUI : public RecoveryUI { vfprintf(stderr, fmt, ap); va_end(ap); } + void ShowFile(const char*) { } void StartMenu(const char* const * headers, const char* const * items, int initial_selection) { } |