| Index: components/autofill/core/browser/autofill_profile.cc
|
| diff --git a/components/autofill/core/browser/autofill_profile.cc b/components/autofill/core/browser/autofill_profile.cc
|
| index ee5111b1d0ca28fcf736ae562e6f753217683a92..f1d4a4284045f856b078ec72657eaf1614203b3a 100644
|
| --- a/components/autofill/core/browser/autofill_profile.cc
|
| +++ b/components/autofill/core/browser/autofill_profile.cc
|
| @@ -283,7 +283,7 @@ void AutofillProfile::GetMatchingTypes(
|
| const std::string& app_locale,
|
| ServerFieldTypeSet* matching_types) const {
|
| FormGroupList info = FormGroups();
|
| - for (const auto& it : info) {
|
| + for (auto* it : info) {
|
| it->GetMatchingTypes(text, app_locale, matching_types);
|
| }
|
| }
|
| @@ -793,7 +793,7 @@ base::string16 AutofillProfile::CanonicalizeProfileString(
|
| void AutofillProfile::GetSupportedTypes(
|
| ServerFieldTypeSet* supported_types) const {
|
| FormGroupList info = FormGroups();
|
| - for (const auto& it : info) {
|
| + for (auto* it : info) {
|
| it->GetSupportedTypes(supported_types);
|
| }
|
| }
|
|
|