| 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 b6ea38a3d6f17f1e8c11b966d37f5895c73da5f3..5e508d26228bf105a54c3a113371d6e75dd328ae 100644
|
| --- a/components/autofill/common/form_field_data.cc
|
| +++ b/components/autofill/common/form_field_data.cc
|
| @@ -15,6 +15,7 @@ FormFieldData::FormFieldData()
|
| is_checked(false),
|
| is_checkable(false),
|
| is_focusable(false),
|
| + is_rtl(false),
|
| should_autocomplete(true) {
|
| }
|
|
|
| @@ -64,6 +65,8 @@ std::ostream& operator<<(std::ostream& os, const FormFieldData& field) {
|
| << " "
|
| << (field.is_focusable ? "true" : "false")
|
| << " "
|
| + << (field.is_rtl ? "true" : "false")
|
| + << " "
|
| << (field.should_autocomplete ? "true" : "false");
|
| }
|
|
|
|
|