diff options
author | Doug Zongker <dougz@google.com> | 2012-09-18 21:37:02 +0200 |
---|---|---|
committer | Doug Zongker <dougz@google.com> | 2012-09-18 21:37:02 +0200 |
commit | 5fa8c23911759a9e81af0e7fb5eb431277b8e9a6 (patch) | |
tree | 6990ad74371795a16ac1670bb21ca2f8e6aeb6bd /ui.h | |
parent | minor recovery fixes (diff) | |
download | android_bootable_recovery-5fa8c23911759a9e81af0e7fb5eb431277b8e9a6.tar android_bootable_recovery-5fa8c23911759a9e81af0e7fb5eb431277b8e9a6.tar.gz android_bootable_recovery-5fa8c23911759a9e81af0e7fb5eb431277b8e9a6.tar.bz2 android_bootable_recovery-5fa8c23911759a9e81af0e7fb5eb431277b8e9a6.tar.lz android_bootable_recovery-5fa8c23911759a9e81af0e7fb5eb431277b8e9a6.tar.xz android_bootable_recovery-5fa8c23911759a9e81af0e7fb5eb431277b8e9a6.tar.zst android_bootable_recovery-5fa8c23911759a9e81af0e7fb5eb431277b8e9a6.zip |
Diffstat (limited to '')
-rw-r--r-- | ui.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -30,6 +30,9 @@ class RecoveryUI { // Initialize the object; called before anything else. virtual void Init(); + // After calling Init(), you can tell the UI what locale it is operating in. + virtual void SetLocale(const char* locale) { } + // Set the overall recovery state ("background image"). enum Icon { NONE, INSTALLING_UPDATE, ERASING, NO_COMMAND, ERROR }; virtual void SetBackground(Icon icon) = 0; |