diff options
author | Tao Bao <tbao@google.com> | 2015-06-03 18:15:49 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-06-03 18:15:50 +0200 |
commit | a69e608a521f7818cc0f17ba86710bd5b18137f2 (patch) | |
tree | a94ee0f95bb444b33f5e18e6e393f053e4e6f5b3 /ui.h | |
parent | Merge "Really don't use TEMP_FAILURE_RETRY with close in recovery." (diff) | |
parent | Log update outputs in order (diff) | |
download | android_bootable_recovery-a69e608a521f7818cc0f17ba86710bd5b18137f2.tar android_bootable_recovery-a69e608a521f7818cc0f17ba86710bd5b18137f2.tar.gz android_bootable_recovery-a69e608a521f7818cc0f17ba86710bd5b18137f2.tar.bz2 android_bootable_recovery-a69e608a521f7818cc0f17ba86710bd5b18137f2.tar.lz android_bootable_recovery-a69e608a521f7818cc0f17ba86710bd5b18137f2.tar.xz android_bootable_recovery-a69e608a521f7818cc0f17ba86710bd5b18137f2.tar.zst android_bootable_recovery-a69e608a521f7818cc0f17ba86710bd5b18137f2.zip |
Diffstat (limited to 'ui.h')
-rw-r--r-- | ui.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -62,8 +62,10 @@ class RecoveryUI { virtual bool WasTextEverVisible() = 0; // Write a message to the on-screen log (shown if the user has - // toggled on the text display). + // toggled on the text display). Print() will also dump the message + // to stdout / log file, while PrintOnScreenOnly() not. virtual void Print(const char* fmt, ...) __printflike(2, 3) = 0; + virtual void PrintOnScreenOnly(const char* fmt, ...) __printflike(2, 3) = 0; virtual void ShowFile(const char* filename) = 0; |