| Index: components/autofill/browser/autofill_manager.cc
|
| diff --git a/components/autofill/browser/autofill_manager.cc b/components/autofill/browser/autofill_manager.cc
|
| index ceecddb17fa24df776146692322544e1e01bedff..56460c351800ce56a013c57f8e578f0c05be7190 100644
|
| --- a/components/autofill/browser/autofill_manager.cc
|
| +++ b/components/autofill/browser/autofill_manager.cc
|
| @@ -205,7 +205,8 @@ AutofillManager::AutofillManager(content::WebContents* web_contents,
|
| personal_data_(delegate->GetPersonalDataManager()),
|
| download_manager_(web_contents->GetBrowserContext(), this),
|
| disable_download_manager_requests_(false),
|
| - autocomplete_history_manager_(web_contents),
|
| + autocomplete_history_manager_(web_contents,
|
| + delegate->GetAutofillWebDataService()),
|
| autocheckout_manager_(this),
|
| metric_logger_(new AutofillMetrics),
|
| has_logged_autofill_enabled_(false),
|
| @@ -1019,7 +1020,8 @@ AutofillManager::AutofillManager(content::WebContents* web_contents,
|
| personal_data_(personal_data),
|
| download_manager_(web_contents->GetBrowserContext(), this),
|
| disable_download_manager_requests_(true),
|
| - autocomplete_history_manager_(web_contents),
|
| + autocomplete_history_manager_(web_contents,
|
| + delegate->GetAutofillWebDataService()),
|
| autocheckout_manager_(this),
|
| metric_logger_(new AutofillMetrics),
|
| has_logged_autofill_enabled_(false),
|
|
|