Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(619)

Unified Diff: components/autofill/core/common/password_form.h

Issue 2127533003: Remove PasswordForm::ssl_valid (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adjust //ios Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 41dcef40767fa62da78e1b255ce040c4bea3b44e..a32e530842c0316a0419e91f758da4ea2d73a8c4 100644
--- a/components/autofill/core/common/password_form.h
+++ b/components/autofill/core/common/password_form.h
@@ -176,15 +176,6 @@ struct PasswordForm {
// attribute. This is only used in parsed HTML forms.
bool new_password_marked_by_site;
- // Whether or not this login was saved under an HTTPS session with a valid
- // SSL cert. We will never match or autofill a PasswordForm where
- // ssl_valid == true with a PasswordForm where ssl_valid == false. This means
- // passwords saved under HTTPS will never get autofilled onto an HTTP page.
- // When importing, this should be set to true if the page URL is HTTPS, thus
- // giving it "the benefit of the doubt" that the SSL cert was valid when it
- // was saved. Default to false.
- bool ssl_valid;
-
// True if this PasswordForm represents the last username/password login the
// user selected to log in to the site. If there is only one saved entry for
// the site, this will always be true, but when there are multiple entries

Powered by Google App Engine
This is Rietveld 408576698