| 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
|
|
|