diff options
| author | Perumaal Shanmugam <perumaal@google.com> | 2019-01-18 22:45:09 +0000 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2019-01-18 22:45:09 +0000 |
| commit | b1882925b56729b2bacdff9c1a0d65ecc19e4338 (patch) | |
| tree | 83b938d66dc598cbafd2022af950695207b3dfba /core/java/android | |
| parent | d839beae5b754a68ca2a770e1471ae826b1ff627 (diff) | |
| parent | 5c016dacb73750014e1af2e79e7124b1ed37421e (diff) | |
Merge "Add content_capture and autofill experiment namespaces"
Diffstat (limited to 'core/java/android')
| -rw-r--r-- | core/java/android/provider/DeviceConfig.java | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/core/java/android/provider/DeviceConfig.java b/core/java/android/provider/DeviceConfig.java index af8146e85ec0..901570389957 100644 --- a/core/java/android/provider/DeviceConfig.java +++ b/core/java/android/provider/DeviceConfig.java @@ -60,6 +60,24 @@ public final class DeviceConfig { 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. * |
