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

Unified Diff: chrome/browser/password_manager/password_store_win.cc

Issue 1108673002: Switch SchemeIsSecure to SchemeIsCryptographic for password-manager-related code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix typo. Created 5 years, 8 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: chrome/browser/password_manager/password_store_win.cc
diff --git a/chrome/browser/password_manager/password_store_win.cc b/chrome/browser/password_manager/password_store_win.cc
index 08d6876b31fcdd5374a8ededf8da5e39d08c9169..a6d7ce1c3572576149085cb2edbf08a4d40ce249 100644
--- a/chrome/browser/password_manager/password_store_win.cc
+++ b/chrome/browser/password_manager/password_store_win.cc
@@ -124,7 +124,7 @@ ScopedVector<autofill::PasswordForm> PasswordStoreWin::DBHandler::GetIE7Results(
autofill->signon_realm = form.signon_realm;
autofill->origin = form.origin;
autofill->preferred = true;
- autofill->ssl_valid = form.origin.SchemeIsSecure();
+ autofill->ssl_valid = form.origin.SchemeIsCryptographic();
autofill->date_created = info.date_created;
matched_forms.push_back(autofill);

Powered by Google App Engine
This is Rietveld 408576698