| 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 38adcb80c46f356fb931fee498dd5aa7ebdca3c4..4d85ea20bdfb9fb6d61b581b9cb590aceca12349 100644
|
| --- a/components/autofill/core/browser/autofill_manager.cc
|
| +++ b/components/autofill/core/browser/autofill_manager.cc
|
| @@ -1011,8 +1011,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.
|
|
|