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

Unified Diff: components/autofill/content/browser/content_autofill_driver.cc

Issue 2839023003: WebView autofill implementation (Closed)
Patch Set: Created 3 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/content/browser/content_autofill_driver.cc
diff --git a/components/autofill/content/browser/content_autofill_driver.cc b/components/autofill/content/browser/content_autofill_driver.cc
index d7403b73d0447f8b873dc2abbde49a4529b3d5fb..d98112f8e9fcd999d0387694a681a46742e79e82 100644
--- a/components/autofill/content/browser/content_autofill_driver.cc
+++ b/components/autofill/content/browser/content_autofill_driver.cc
@@ -34,12 +34,14 @@ ContentAutofillDriver::ContentAutofillDriver(
content::RenderFrameHost* render_frame_host,
AutofillClient* client,
const std::string& app_locale,
- AutofillManager::AutofillDownloadManagerState enable_download_manager)
+ AutofillManager::AutofillDownloadManagerState enable_download_manager,
+ AutofillProvider* provider)
: render_frame_host_(render_frame_host),
autofill_manager_(new AutofillManager(this,
client,
app_locale,
- enable_download_manager)),
+ enable_download_manager,
+ provider)),
autofill_external_delegate_(autofill_manager_.get(), this),
key_press_handler_manager_(this),
binding_(this) {

Powered by Google App Engine
This is Rietveld 408576698