Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c483a569 authored by Justin Weir's avatar Justin Weir
Browse files

Deprecate 2 methods

setQsScrimEnabled does nothing in a scene container context, because
scrim enablement is handled internal to transitions there.

updateSystemUiStateFlags's responsibilities are handed by
SceneContainerPlugin via flow collection rather than pushing flag
updates all over the place.

Flag: NONE
Test: No functional changes
Bug: 303267342
Change-Id: Icc662b533de6962f9bb441f35349eeec990b82a8
parent 58a56dd7
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -58,13 +58,14 @@ interface ShadeViewController {
    fun setAlphaChangeAnimationEndAction(r: Runnable)

    /** Sets Qs ScrimEnabled and updates QS state. */
    @Deprecated("Does nothing when scene container is enabled.")
    fun setQsScrimEnabled(qsScrimEnabled: Boolean)

    /** Sets the top spacing for the ambient indicator. */
    fun setAmbientIndicationTop(ambientIndicationTop: Int, ambientTextVisible: Boolean)

    /** Updates notification panel-specific flags on [SysUiState]. */
    fun updateSystemUiStateFlags()
    @Deprecated("Does nothing when scene container is enabled.") fun updateSystemUiStateFlags()

    /** Ensures that the touchable region is updated. */
    fun updateTouchableRegion()