| Index: ios/chrome/browser/autofill/form_structure_browsertest.mm
|
| diff --git a/ios/chrome/browser/autofill/form_structure_browsertest.mm b/ios/chrome/browser/autofill/form_structure_browsertest.mm
|
| index 6c05bd0429a490ff3a8a1dd501f4675cc871dcc9..580a5ebcbea3c1c5d428e86e8ee016b1adbb8770 100644
|
| --- a/ios/chrome/browser/autofill/form_structure_browsertest.mm
|
| +++ b/ios/chrome/browser/autofill/form_structure_browsertest.mm
|
| @@ -131,7 +131,7 @@ std::string FormStructureBrowserTest::FormStructuresToString(
|
| const std::vector<std::unique_ptr<FormStructure>>& forms) {
|
| std::string forms_string;
|
| for (const std::unique_ptr<FormStructure>& form : forms) {
|
| - for (const AutofillField* field : *form) {
|
| + for (const auto& field : *form) {
|
| forms_string += field->Type().ToString();
|
| forms_string += " | " + base::UTF16ToUTF8(field->name);
|
| forms_string += " | " + base::UTF16ToUTF8(field->label);
|
|
|