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

Unified Diff: chrome/utility/importer/ie_importer_win.cc

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: chrome/utility/importer/ie_importer_win.cc
diff --git a/chrome/utility/importer/ie_importer_win.cc b/chrome/utility/importer/ie_importer_win.cc
index aadfd5b2a2d1ccaf0fb83ff649fc82561216d02a..7e06583d7feba32736b9ff2b440835d22b30e395 100644
--- a/chrome/utility/importer/ie_importer_win.cc
+++ b/chrome/utility/importer/ie_importer_win.cc
@@ -662,13 +662,6 @@ void IEImporter::ImportPasswordsIE6() {
form.password_value = ac_list[i].data[1];
form.signon_realm = url.GetOrigin().spec();
- // This is not precise, because a scheme of https does not imply a valid
- // certificate was presented; however we assign it this way so that if we
- // import a password from IE whose scheme is https, we give it the benefit
- // of the doubt and DON'T auto-fill it unless the form appears under
- // valid TLS conditions.
- form.ssl_valid = url.SchemeIsCryptographic();
-
// Goes through the list to find out the username field
// of the web page.
size_t list_it, item_it;
« no previous file with comments | « chrome/browser/ui/passwords/manage_passwords_ui_controller_unittest.cc ('k') | chrome/utility/importer/nss_decryptor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698