diff options
author | Fabian Meumertzheim <fabian@hen.ne.ke> | 2021-01-29 07:14:05 +0100 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2021-03-06 13:45:42 +0530 |
commit | 7d3ede4025354c4ddacfd88cef02c647536c7f02 (patch) | |
tree | bf0c11dde496fdc0773b0a8aabca4054550bca99 /autofill-parser | |
parent | 3b55a14acbf8845067f0ab0789a14c6faff8601e (diff) |
Mark Chrome Beta as reliably fillable and saveable (#1291)
https://chromereleases.googleblog.com/2021/01/chrome-beta-for-android-update_28.html
(cherry picked from commit fe29aa0cb0900683b83f47e70e1ba3967f32d560)
Diffstat (limited to 'autofill-parser')
-rw-r--r-- | autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/FeatureAndTrustDetection.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/FeatureAndTrustDetection.kt b/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/FeatureAndTrustDetection.kt index 12ca138f..6c8d16e7 100644 --- a/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/FeatureAndTrustDetection.kt +++ b/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/FeatureAndTrustDetection.kt @@ -146,6 +146,7 @@ private val BROWSER_SAVE_FLAG = mapOf( @RequiresApi(Build.VERSION_CODES.O) private val BROWSER_SAVE_FLAG_IF_NO_ACCESSIBILITY = mapOf( + "com.chrome.beta" to SaveInfo.FLAG_SAVE_ON_ALL_VIEWS_INVISIBLE, "com.chrome.canary" to SaveInfo.FLAG_SAVE_ON_ALL_VIEWS_INVISIBLE, "com.chrome.dev" to SaveInfo.FLAG_SAVE_ON_ALL_VIEWS_INVISIBLE, ) @@ -181,7 +182,6 @@ fun getBrowserAutofillSupportInfoIfTrusted( private val FLAKY_BROWSERS = listOf( "com.android.chrome", - "com.chrome.beta", "org.bromite.bromite", "org.ungoogled.chromium.stable", "com.kiwibrowser.browser", |