summaryrefslogtreecommitdiffstats
path: root/wear_ui.h
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-09-09 00:05:10 +0200
committerandroid-build-merger <android-build-merger@google.com>2017-09-09 00:05:10 +0200
commit190d60c62661bd44f205fed107df3d0a5eab499c (patch)
tree9c0d37334ffbec42fb11df55294a7587b29b83ac /wear_ui.h
parentMerge "ui: Manage menu_ with std::vector." am: f51bb0f2d6 am: 4e3e42bed8 am: 77425c5e15 (diff)
parentMerge "wear_ui: Remove Print()/ShowFile()/PutChar()." am: fa4f014063 am: 5f5ccacef7 (diff)
downloadandroid_bootable_recovery-190d60c62661bd44f205fed107df3d0a5eab499c.tar
android_bootable_recovery-190d60c62661bd44f205fed107df3d0a5eab499c.tar.gz
android_bootable_recovery-190d60c62661bd44f205fed107df3d0a5eab499c.tar.bz2
android_bootable_recovery-190d60c62661bd44f205fed107df3d0a5eab499c.tar.lz
android_bootable_recovery-190d60c62661bd44f205fed107df3d0a5eab499c.tar.xz
android_bootable_recovery-190d60c62661bd44f205fed107df3d0a5eab499c.tar.zst
android_bootable_recovery-190d60c62661bd44f205fed107df3d0a5eab499c.zip
Diffstat (limited to 'wear_ui.h')
-rw-r--r--wear_ui.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/wear_ui.h b/wear_ui.h
index 92ef813f3..739b4cb1d 100644
--- a/wear_ui.h
+++ b/wear_ui.h
@@ -19,19 +19,12 @@
#include "screen_ui.h"
-#include <string>
-
class WearRecoveryUI : public ScreenRecoveryUI {
public:
WearRecoveryUI();
void SetStage(int current, int max) override;
- // printing messages
- void Print(const char* fmt, ...) override;
- void ShowFile(const char* filename) override;
- void ShowFile(FILE* fp) override;
-
// menu display
void StartMenu(const char* const* headers, const char* const* items,
int initial_selection) override;
@@ -53,8 +46,6 @@ class WearRecoveryUI : public ScreenRecoveryUI {
void draw_background_locked() override;
void draw_screen_locked() override;
- void PutChar(char);
-
int menu_start, menu_end;
};