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

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

Issue 2745803003: autofill-try
Patch Set: before I leave Created 3 years, 9 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.h
diff --git a/components/autofill/content/browser/content_autofill_driver.h b/components/autofill/content/browser/content_autofill_driver.h
index 0f6fb0840272be4583cfab51ebf829f634e92d25..c78de5d32506d1d473a55b78bd93c661dc70418d 100644
--- a/components/autofill/content/browser/content_autofill_driver.h
+++ b/components/autofill/content/browser/content_autofill_driver.h
@@ -24,6 +24,7 @@ class RenderFrameHost;
namespace autofill {
class AutofillClient;
+class AutofillProvider;
// Class that drives autofill flow in the browser process based on
// communication from the renderer and from the external world. There is one
@@ -35,7 +36,8 @@ class ContentAutofillDriver : public AutofillDriver,
content::RenderFrameHost* render_frame_host,
AutofillClient* client,
const std::string& app_locale,
- AutofillManager::AutofillDownloadManagerState enable_download_manager);
+ AutofillManager::AutofillDownloadManagerState enable_download_manager,
+ AutofillProvider* provider);
~ContentAutofillDriver() override;
// Gets the driver for |render_frame_host|.
@@ -127,6 +129,8 @@ class ContentAutofillDriver : public AutofillDriver,
mojo::Binding<mojom::AutofillDriver> binding_;
mojom::AutofillAgentPtr autofill_agent_;
+
+ AutofillProvider* provider_;
};
} // namespace autofill

Powered by Google App Engine
This is Rietveld 408576698