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

Unified Diff: components/autofill/content/common/autofill_types_struct_traits.cc

Issue 2604453003: Show Form-Not-Secure warning on page load (Closed)
Patch Set: meacer, jochen comments Created 3 years, 12 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/content/common/autofill_types_struct_traits.cc
diff --git a/components/autofill/content/common/autofill_types_struct_traits.cc b/components/autofill/content/common/autofill_types_struct_traits.cc
index 81e2fb478c677bd1ac1a5d7f1fccb2f3c187067c..41a5bcc7ff900af51d5024bffb022e06955c6fbd 100644
--- a/components/autofill/content/common/autofill_types_struct_traits.cc
+++ b/components/autofill/content/common/autofill_types_struct_traits.cc
@@ -502,6 +502,8 @@ bool StructTraits<mojom::PasswordFormFillDataDataView, PasswordFormFillData>::
out->wait_for_username = data.wait_for_username();
out->is_possible_change_password_form =
data.is_possible_change_password_form();
+ out->show_form_not_secure_warning_on_autofill =
+ data.show_form_not_secure_warning_on_autofill();
return true;
}

Powered by Google App Engine
This is Rietveld 408576698