| Index: components/autofill/core/browser/autofill_manager.cc
|
| diff --git a/components/autofill/core/browser/autofill_manager.cc b/components/autofill/core/browser/autofill_manager.cc
|
| index 09cfefc22c2a4459b717ece06ccb9d35faaa9e34..a63c720f68f5f898251491521909967d5fc85539 100644
|
| --- a/components/autofill/core/browser/autofill_manager.cc
|
| +++ b/components/autofill/core/browser/autofill_manager.cc
|
| @@ -1016,8 +1016,10 @@ void AutofillManager::OnLoadedServerPredictions(
|
|
|
| // Will log quality metrics for each FormStructure based on the presence of
|
| // autocomplete attributes, if available.
|
| - for (FormStructure* cur_form : queried_forms)
|
| - cur_form->LogQualityMetricsBasedOnAutocomplete();
|
| + for (FormStructure* cur_form : queried_forms) {
|
| + cur_form->LogQualityMetricsBasedOnAutocomplete(
|
| + form_interactions_ukm_logger_.get());
|
| + }
|
|
|
| // Forward form structures to the password generation manager to detect
|
| // account creation forms.
|
|
|