Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(239)

Unified Diff: components/autofill/browser/autofill_manager.cc

Issue 13928035: WIP Component build of autofill Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: make windows compiling Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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),

Powered by Google App Engine
This is Rietveld 408576698