Index: content/public/common/password_form.h |
diff --git a/content/public/common/password_form.h b/content/public/common/password_form.h |
index 1a70685305b274874b49720e53a4f68c73aa6b28..dac4e051b6651201e94bfa6d9c8c63aa7ee2f08e 100644 |
--- a/content/public/common/password_form.h |
+++ b/content/public/common/password_form.h |
@@ -54,6 +54,13 @@ struct CONTENT_EXPORT PasswordForm { |
// data from the database, so it must not be empty. |
std::string signon_realm; |
+ // The "Realm" for the sign-on (scheme, host, port for SCHEME_HTML, and |
+ // contains the HTTP realm for dialog-based forms). |
+ // This realm is only set if this is not a perfect match for same origin |
+ // matching and instead just a domain that matches the same domain using the |
+ // PSL. |
+ std::string original_signon_realm; |
+ |
// The URL (minus query parameters) containing the form. This is the primary |
// data used by the PasswordManager to decide (in longest matching prefix |
// fashion) whether or not a given PasswordForm result from the database is a |
@@ -163,6 +170,10 @@ struct CONTENT_EXPORT PasswordForm { |
// When parsing an HTML form, this is not used. |
int times_used; |
+ // Tracks if this is not a perfect match for same origin matching and instead |
+ // just a domain that matches the same origin policy using the PSL domain. |
+ bool is_psl_origin_match; |
Ilya Sherman
2013/06/06 09:25:35
If you were to just always set both signon_realm a
nyquist
2013/06/07 22:51:10
We need a flag to separate where this result came
Ilya Sherman
2013/06/07 23:47:56
Could IsPSLOriginMatch() just return true iff sign
nyquist
2013/06/11 03:36:01
Removed this field, and instead checking for |orig
|
+ |
PasswordForm(); |
~PasswordForm(); |
}; |