diff options
author | Fabian Meumertzheim <4312191+fmeum@users.noreply.github.com> | 2020-12-16 22:07:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-16 13:07:50 -0800 |
commit | 5a3395040cab74903c95eb5d97308451d051ac96 (patch) | |
tree | 3120e1b3d3d758b37be4ab24d7aee416976e9999 /autofill-parser | |
parent | 67393ef62d386d0ce61838fe1d2dff8d6cbae5ee (diff) |
Mark Chrome Dev as non-flaky and able to save (#1250)
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 f9f06192..c3ea69ff 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 @@ -147,6 +147,7 @@ private val BROWSER_SAVE_FLAG = mapOf( @RequiresApi(Build.VERSION_CODES.O) private val BROWSER_SAVE_FLAG_IF_NO_ACCESSIBILITY = mapOf( "com.chrome.canary" to SaveInfo.FLAG_SAVE_ON_ALL_VIEWS_INVISIBLE, + "com.chrome.dev" to SaveInfo.FLAG_SAVE_ON_ALL_VIEWS_INVISIBLE, ) private fun isNoAccessibilityServiceEnabled(context: Context): Boolean { @@ -181,7 +182,6 @@ internal fun getBrowserAutofillSupportInfoIfTrusted( private val FLAKY_BROWSERS = listOf( "com.android.chrome", "com.chrome.beta", - "com.chrome.dev", "org.bromite.bromite", "org.ungoogled.chromium.stable", "com.kiwibrowser.browser", |