Chromium Code Reviews| Index: components/autofill/core/common/password_form.h |
| diff --git a/components/autofill/core/common/password_form.h b/components/autofill/core/common/password_form.h |
| index 96633264b01e32a407cdf3e9d150ee763faad6f0..d0e9d7cdcaa9fcccac5e61d5409a19c1b1c38828 100644 |
| --- a/components/autofill/core/common/password_form.h |
| +++ b/components/autofill/core/common/password_form.h |
| @@ -271,6 +271,10 @@ struct PasswordForm { |
| // Returns true if this match was found using public suffix matching. |
| bool IsPublicSuffixMatch() const; |
| + // Return true if we consider this form to be a change password form. |
| + // We use only client heuristics for this, so probably we are wrong. |
|
Garrett Casto
2015/06/12 22:22:16
I wouldn't say "probably we are wrong" here. I wou
dvadym
2015/06/15 09:34:59
I changed text to
"We use only client heuristics,
|
| + bool IsPossibleChangePasswordForm() const; |
| + |
| // Equality operators for testing. |
| bool operator==(const PasswordForm& form) const; |
| bool operator!=(const PasswordForm& form) const; |