aboutsummaryrefslogtreecommitdiff
path: root/autofill-parser
diff options
context:
space:
mode:
authorFabian Meumertzheim <fabian@meumertzhe.im>2021-04-01 18:36:24 +0200
committerGitHub <noreply@github.com>2021-04-01 16:36:24 +0000
commitc10703db49528c7a0b8831659b2698d3218ba9ee (patch)
tree04f4e07d380d6d825a5d6588d8bbc117940204c2 /autofill-parser
parent4c8c0f44c8d33673fd7421dd638dc9d60b470181 (diff)
Mark Ungoogled and Bromite as non-flaky (#1365)
* Mark Bromite as non-flaky * Mark Ungoogled as non-flaky
Diffstat (limited to 'autofill-parser')
-rw-r--r--autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/FeatureAndTrustDetection.kt4
1 files changed, 2 insertions, 2 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 8dba907c..7d572ba8 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
@@ -157,6 +157,8 @@ private val BROWSER_SAVE_FLAG_IF_NO_ACCESSIBILITY =
"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,
+ "org.bromite.bromite" to SaveInfo.FLAG_SAVE_ON_ALL_VIEWS_INVISIBLE,
+ "org.ungoogled.chromium.stable" to SaveInfo.FLAG_SAVE_ON_ALL_VIEWS_INVISIBLE,
)
private fun isNoAccessibilityServiceEnabled(context: Context): Boolean {
@@ -183,8 +185,6 @@ internal fun getBrowserAutofillSupportInfoIfTrusted(context: Context, appPackage
private val FLAKY_BROWSERS =
listOf(
- "org.bromite.bromite",
- "org.ungoogled.chromium.stable",
"com.kiwibrowser.browser",
)