Merge "screen_ui: Compute the top and bottom gaps."
diff --git a/wear_ui.cpp b/wear_ui.cpp
index 640f04a..a29746c 100644
--- a/wear_ui.cpp
+++ b/wear_ui.cpp
@@ -363,17 +363,6 @@
   fclose(fp);
 }
 
-void WearRecoveryUI::ClearText() {
-  pthread_mutex_lock(&updateMutex);
-  text_col_ = 0;
-  text_row_ = 0;
-  text_top_ = 1;
-  for (size_t i = 0; i < text_rows_; ++i) {
-    memset(text_[i], 0, text_cols_ + 1);
-  }
-  pthread_mutex_unlock(&updateMutex);
-}
-
 void WearRecoveryUI::PrintOnScreenOnly(const char *fmt, ...) {
   va_list ap;
   va_start(ap, fmt);
diff --git a/wear_ui.h b/wear_ui.h
index e108d4d..a814118 100644
--- a/wear_ui.h
+++ b/wear_ui.h
@@ -75,10 +75,8 @@
 
   void draw_background_locked() override;
   void draw_screen_locked() override;
-  void draw_progress_locked();
 
   void PutChar(char);
-  void ClearText();
 };
 
 #endif  // RECOVERY_WEAR_UI_H