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

Commit c19a2266 authored by David Thames's avatar David Thames Committed by Android (Google) Code Review
Browse files

Merge "Add flagging for smartspace event swipe logging" into main

parents 1839e2b5 07ac4d03
Loading
Loading
Loading
Loading
+7 −0
Original line number Original line Diff line number Diff line
@@ -739,6 +739,13 @@ flag {
    bug: "259566300"
    bug: "259566300"
}
}


flag {
    name: "smartspace_swipe_event_logging"
    namespace: "systemui"
    description: "Log card swipe events in smartspace"
    bug: "374150422"
}

flag {
flag {
   name: "pin_input_field_styled_focus_state"
   name: "pin_input_field_styled_focus_state"
   namespace: "systemui"
   namespace: "systemui"
+2 −0
Original line number Original line Diff line number Diff line
@@ -23,4 +23,6 @@ interface BcSmartspaceConfigPlugin {
    val isDefaultDateWeatherDisabled: Boolean
    val isDefaultDateWeatherDisabled: Boolean
    /** Gets if Smartspace should use ViewPager2 */
    /** Gets if Smartspace should use ViewPager2 */
    val isViewPager2Enabled: Boolean
    val isViewPager2Enabled: Boolean
    /** Gets if card swipe event should be logged */
    val isSwipeEventLoggingEnabled: Boolean
}
}
+4 −0
Original line number Original line Diff line number Diff line
@@ -16,6 +16,7 @@


package com.android.systemui.smartspace.config
package com.android.systemui.smartspace.config


import com.android.systemui.Flags.smartspaceSwipeEventLogging
import com.android.systemui.Flags.smartspaceViewpager2
import com.android.systemui.Flags.smartspaceViewpager2
import com.android.systemui.flags.FeatureFlags
import com.android.systemui.flags.FeatureFlags
import com.android.systemui.plugins.BcSmartspaceConfigPlugin
import com.android.systemui.plugins.BcSmartspaceConfigPlugin
@@ -27,4 +28,7 @@ class BcSmartspaceConfigProvider(private val featureFlags: FeatureFlags) :


    override val isViewPager2Enabled: Boolean
    override val isViewPager2Enabled: Boolean
        get() = smartspaceViewpager2()
        get() = smartspaceViewpager2()

    override val isSwipeEventLoggingEnabled: Boolean
        get() = smartspaceSwipeEventLogging()
}
}