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

Commit 73740091 authored by Haoran Zhang's avatar Haoran Zhang
Browse files

Hard code resilient window finger print flag value

Bug:285069015
Test: atest CtsAutoFillServiceTestCases

Change-Id: Ie005b46a048ea47e75b426725fec5101659b9b7d
parent 75024846
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -283,6 +283,9 @@ public class AutofillFeatureFlags {
    private static final String DEFAULT_AFAA_NON_AUTOFILLABLE_IME_ACTIONS = "3,4";
    private static final boolean DEFAULT_AFAA_SHOULD_ENABLE_AUTOFILL_ON_ALL_VIEW_TYPES = true;
    private static final boolean DEFAULT_AFAA_SHOULD_ENABLE_MULTILINE_FILTER = true;
    private static final boolean
            DEFAULT_AFAA_SHOULD_INCLUDE_ALL_AUTOFILL_TYPE_NOT_NONE_VIEWS_IN_ASSIST_STRUCTURE = true;
    // END AUTOFILL FOR ALL APPS DEFAULTS

    private AutofillFeatureFlags() {};

@@ -414,7 +417,8 @@ public class AutofillFeatureFlags {
    public static boolean shouldIncludeAllViewsAutofillTypeNotNoneInAssistStructrue() {
        return DeviceConfig.getBoolean(
            DeviceConfig.NAMESPACE_AUTOFILL,
            DEVICE_CONFIG_INCLUDE_ALL_AUTOFILL_TYPE_NOT_NONE_VIEWS_IN_ASSIST_STRUCTURE, false);
            DEVICE_CONFIG_INCLUDE_ALL_AUTOFILL_TYPE_NOT_NONE_VIEWS_IN_ASSIST_STRUCTURE,
            DEFAULT_AFAA_SHOULD_INCLUDE_ALL_AUTOFILL_TYPE_NOT_NONE_VIEWS_IN_ASSIST_STRUCTURE);
    }

    /**