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

Commit 7ef14c02 authored by Cassie(Yitong) Wang's avatar Cassie(Yitong) Wang Committed by Android (Google) Code Review
Browse files

Merge "DO NOT MERGE Make classes open for inherit" into tm-qpr-dev

parents 49e0e9e2 1953c57e
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -62,7 +62,7 @@ import javax.inject.Inject
 */

@SysUISingleton
class PrivacyDotViewController @Inject constructor(
open class PrivacyDotViewController @Inject constructor(
    @Main private val mainExecutor: Executor,
    private val stateController: StatusBarStateController,
    private val configurationController: ConfigurationController,
@@ -176,7 +176,7 @@ class PrivacyDotViewController @Inject constructor(
    }

    @UiThread
    private fun hideDotView(dot: View, animate: Boolean) {
    open fun hideDotView(dot: View, animate: Boolean) {
        dot.clearAnimation()
        if (animate) {
            dot.animate()
@@ -195,7 +195,7 @@ class PrivacyDotViewController @Inject constructor(
    }

    @UiThread
    private fun showDotView(dot: View, animate: Boolean) {
    open fun showDotView(dot: View, animate: Boolean) {
        dot.clearAnimation()
        if (animate) {
            dot.visibility = View.VISIBLE