summaryrefslogtreecommitdiffstats
path: root/screen_ui.h
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2018-08-04 01:56:30 +0200
committerandroid-build-merger <android-build-merger@google.com>2018-08-04 01:56:30 +0200
commit00c9829f4a10a6058adabf7aeba09f52f0dde139 (patch)
treef6ede4d70751e7a17f7729f2a5823ae5c488a4e4 /screen_ui.h
parentMerge "Remove non-A/B mention from README." am: f8b04fe48d am: a5d6a661c6 (diff)
parentMerge "ui: Read custom recovery UI values via system property." am: 2117b4bd07 (diff)
downloadandroid_bootable_recovery-00c9829f4a10a6058adabf7aeba09f52f0dde139.tar
android_bootable_recovery-00c9829f4a10a6058adabf7aeba09f52f0dde139.tar.gz
android_bootable_recovery-00c9829f4a10a6058adabf7aeba09f52f0dde139.tar.bz2
android_bootable_recovery-00c9829f4a10a6058adabf7aeba09f52f0dde139.tar.lz
android_bootable_recovery-00c9829f4a10a6058adabf7aeba09f52f0dde139.tar.xz
android_bootable_recovery-00c9829f4a10a6058adabf7aeba09f52f0dde139.tar.zst
android_bootable_recovery-00c9829f4a10a6058adabf7aeba09f52f0dde139.zip
Diffstat (limited to 'screen_ui.h')
-rw-r--r--screen_ui.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/screen_ui.h b/screen_ui.h
index b76d4706e..f08f4f4f3 100644
--- a/screen_ui.h
+++ b/screen_ui.h
@@ -158,14 +158,14 @@ class ScreenRecoveryUI : public RecoveryUI {
protected:
// The margin that we don't want to use for showing texts (e.g. round screen, or screen with
// rounded corners).
- const int kMarginWidth;
- const int kMarginHeight;
+ const int margin_width_;
+ const int margin_height_;
// Number of frames per sec (default: 30) for both parts of the animation.
- const int kAnimationFps;
+ const int animation_fps_;
// The scale factor from dp to pixels. 1.0 for mdpi, 4.0 for xxxhdpi.
- const float kDensity;
+ const float density_;
virtual bool InitTextParams();