| Index: components/autofill/core/browser/form_structure.cc
|
| diff --git a/components/autofill/core/browser/form_structure.cc b/components/autofill/core/browser/form_structure.cc
|
| index a01d91547bcf86545feafa9a22f9dc6b47a9ecb0..dfddb5edfb171ff2691e0bae2d8817e3c0cdea17 100644
|
| --- a/components/autofill/core/browser/form_structure.cc
|
| +++ b/components/autofill/core/browser/form_structure.cc
|
| @@ -1107,6 +1107,7 @@ bool FormStructure::FillFields(
|
| const std::vector<ServerFieldType>& types,
|
| const InputFieldComparator& matches,
|
| const base::Callback<base::string16(const AutofillType&)>& get_info,
|
| + const std::string& info_language_code,
|
| const std::string& app_locale) {
|
| bool filled_something = false;
|
| for (size_t i = 0; i < field_count(); ++i) {
|
| @@ -1114,6 +1115,7 @@ bool FormStructure::FillFields(
|
| if (matches.Run(types[j], *field(i))) {
|
| AutofillField::FillFormField(*field(i),
|
| get_info.Run(field(i)->Type()),
|
| + info_language_code,
|
| app_locale,
|
| field(i));
|
| filled_something = true;
|
|
|