summaryrefslogtreecommitdiffstats
path: root/wear_ui.h
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2017-09-10 10:14:23 +0200
committerandroid-build-team Robot <android-build-team-robot@google.com>2017-09-10 10:14:23 +0200
commit9f7e4ccc7ccd7c1aada2aa845938a264e0140a20 (patch)
tree9c0d37334ffbec42fb11df55294a7587b29b83ac /wear_ui.h
parentrelease-request-51e6d4a7-52eb-462d-9bf2-f148ba83e4bd-for-git_pi-release-4320962 snap-temp-L22700000100184372 (diff)
parentui: Manage menu_ with std::vector. am: 17fa5c7cab (diff)
downloadandroid_bootable_recovery-9f7e4ccc7ccd7c1aada2aa845938a264e0140a20.tar
android_bootable_recovery-9f7e4ccc7ccd7c1aada2aa845938a264e0140a20.tar.gz
android_bootable_recovery-9f7e4ccc7ccd7c1aada2aa845938a264e0140a20.tar.bz2
android_bootable_recovery-9f7e4ccc7ccd7c1aada2aa845938a264e0140a20.tar.lz
android_bootable_recovery-9f7e4ccc7ccd7c1aada2aa845938a264e0140a20.tar.xz
android_bootable_recovery-9f7e4ccc7ccd7c1aada2aa845938a264e0140a20.tar.zst
android_bootable_recovery-9f7e4ccc7ccd7c1aada2aa845938a264e0140a20.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;
};