Index: components/autofill/common/form_field_data.cc |
diff --git a/components/autofill/common/form_field_data.cc b/components/autofill/common/form_field_data.cc |
index d78966d20338d6eaa0784831cc0781470f333599..da8a0642df74436555a75f7457d02202f414a195 100644 |
--- a/components/autofill/common/form_field_data.cc |
+++ b/components/autofill/common/form_field_data.cc |
@@ -12,6 +12,7 @@ FormFieldData::FormFieldData() |
is_autofilled(false), |
is_checked(false), |
is_checkable(false), |
+ is_password_field(false), |
is_focusable(false), |
should_autocomplete(true) { |
} |
@@ -60,6 +61,8 @@ std::ostream& operator<<(std::ostream& os, const FormFieldData& field) { |
<< " " |
<< (field.is_checkable ? "true" : "false") |
<< " " |
+ << (field.is_password_field ? "true" : "false") |
+ << " " |
<< (field.is_focusable ? "true" : "false") |
<< " " |
<< (field.should_autocomplete ? "true" : "false"); |