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

Commit 5c016dac authored by Perumaal S's avatar Perumaal S
Browse files

Add content_capture and autofill experiment namespaces

No functional changes, just @hide api changes.

Test: m update-api
Change-Id: I4e92c7dd3393edf3526ccd94dfd617fb225aa09a
Bug: 121037717
parent 5daa3568
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -5105,6 +5105,8 @@ package android.provider {
    method public static void removeOnPropertyChangedListener(android.provider.DeviceConfig.OnPropertyChangedListener);
    method public static void resetToDefaults(int, java.lang.String);
    method public static boolean setProperty(java.lang.String, java.lang.String, java.lang.String, boolean);
    field public static final java.lang.String NAMESPACE_AUTOFILL = "autofill";
    field public static final java.lang.String NAMESPACE_CONTENT_CAPTURE = "content_capture";
    field public static final java.lang.String NAMESPACE_GAME_DRIVER = "game_driver";
    field public static final java.lang.String NAMESPACE_INPUT_NATIVE_BOOT = "input_native_boot";
  }
+18 −0
Original line number Diff line number Diff line
@@ -59,6 +59,24 @@ public final class DeviceConfig {
    @SystemApi
    public static final String NAMESPACE_GAME_DRIVER = "game_driver";

    /**
     * Namespace for autofill feature that provides suggestions across all apps when
     * the user interacts with input fields.
     *
     * @hide
     */
    @SystemApi
    public static final String NAMESPACE_AUTOFILL = "autofill";

    /**
     * Namespace for content capture feature used by on-device machine intelligence
     * to provide suggestions in a privacy-safe manner.
     *
     * @hide
     */
    @SystemApi
    public static final String NAMESPACE_CONTENT_CAPTURE = "content_capture";

    /**
     * Namespace for all input-related features that are used at the native level.
     * These features are applied at reboot.