1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-11 13:53:29 +00:00

[Browser lists] Global clarification (#876)

* AccessibilityHelpers.cs: global clarification

* AutofillHelpers.cs: global clarification

* autofillservice.xml: global clarification
This commit is contained in:
Contribucious
2020-05-05 16:52:54 +02:00
committed by GitHub
parent e2033eee23
commit fafd8f8ee6
3 changed files with 47 additions and 26 deletions

View File

@@ -16,8 +16,12 @@ namespace Bit.Droid.Autofill
{
private static int _pendingIntentId = 0;
// These browser work natively with the autofill framework
// Be sure to keep these entries sorted alphabetically
// These browsers work natively with the Autofill Framework
//
// Be sure:
// - to keep these entries sorted alphabetically and
//
// - ... to keep this list in sync with values in AccessibilityHelpers.SupportedBrowsers [Section A], too.
public static HashSet<string> TrustedBrowsers = new HashSet<string>
{
"com.duckduckgo.mobile.android",
@@ -25,10 +29,13 @@ namespace Bit.Droid.Autofill
"org.mozilla.klar",
};
// These browsers work using the compatibility shim for the autofill framework
// Be sure to:
// - keep these entries sorted alphabetically
// - keep this list in sync with values in Resources/xml/autofillservice.xml
// These browsers work using the compatibility shim for the Autofill Framework
//
// Be sure:
// - to keep these entries sorted alphabetically,
// - to keep this list in sync with values in Resources/xml/autofillservice.xml, and
//
// - ... to keep this list in sync with values in AccessibilityHelpers.SupportedBrowsers [Section A], too.
public static HashSet<string> CompatBrowsers = new HashSet<string>
{
"com.amazon.cloud9",