Index: components/autofill/content/common/autofill_types.mojom |
diff --git a/components/autofill/content/common/autofill_types.mojom b/components/autofill/content/common/autofill_types.mojom |
index d8012a15bbffc7731ae417f9b8a305ea73cbd605..5e0c6ee9f3a6b6286d7ec98b32ae3598e3483762 100644 |
--- a/components/autofill/content/common/autofill_types.mojom |
+++ b/components/autofill/content/common/autofill_types.mojom |
@@ -139,6 +139,12 @@ struct PasswordFormGenerationData { |
uint32 confirmation_field_signature; |
}; |
+// autofill::PossibleUsernamePair |
+struct PossibleUsernamePair { |
+ string value; |
+ string field_name; |
+}; |
+ |
// autofill::PasswordForm |
struct PasswordForm { |
PasswordFormScheme scheme; |
@@ -150,7 +156,7 @@ struct PasswordForm { |
string username_element; |
bool username_marked_by_site; |
string username_value; |
- array<string> other_possible_usernames; |
+ array<PossibleUsernamePair> other_possible_usernames; |
string password_element; |
string password_value; |
bool password_value_is_default; |