diff options
author | Tao Bao <tbao@google.com> | 2017-08-22 20:30:56 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-08-22 20:30:56 +0200 |
commit | cead180a2bc0f952a666665477490c3613ffb5b5 (patch) | |
tree | 366f8fbdf3193a2635844b1f49d275afc22f89d6 /screen_ui.h | |
parent | Merge "Move Image/ImageChunk/PatchChunk declaration into header files" (diff) | |
parent | Merge changes I5d7a6baa,Id0fb2d4e (diff) | |
download | android_bootable_recovery-cead180a2bc0f952a666665477490c3613ffb5b5.tar android_bootable_recovery-cead180a2bc0f952a666665477490c3613ffb5b5.tar.gz android_bootable_recovery-cead180a2bc0f952a666665477490c3613ffb5b5.tar.bz2 android_bootable_recovery-cead180a2bc0f952a666665477490c3613ffb5b5.tar.lz android_bootable_recovery-cead180a2bc0f952a666665477490c3613ffb5b5.tar.xz android_bootable_recovery-cead180a2bc0f952a666665477490c3613ffb5b5.tar.zst android_bootable_recovery-cead180a2bc0f952a666665477490c3613ffb5b5.zip |
Diffstat (limited to 'screen_ui.h')
-rw-r--r-- | screen_ui.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/screen_ui.h b/screen_ui.h index df7cc25b3..62dda7558 100644 --- a/screen_ui.h +++ b/screen_ui.h @@ -84,6 +84,9 @@ class ScreenRecoveryUI : public RecoveryUI { const int kMarginWidth; const int kMarginHeight; + // Number of frames per sec (default: 30) for both parts of the animation. + const int kAnimationFps; + // The scale factor from dp to pixels. 1.0 for mdpi, 4.0 for xxxhdpi. const float density_; @@ -141,9 +144,6 @@ class ScreenRecoveryUI : public RecoveryUI { size_t current_frame; bool intro_done; - // Number of frames per sec (default: 30) for both parts of the animation. - int animation_fps; - int stage, max_stage; int char_width_; |