| Index: components/autofill/core/browser/autofill_external_delegate.cc
|
| diff --git a/components/autofill/core/browser/autofill_external_delegate.cc b/components/autofill/core/browser/autofill_external_delegate.cc
|
| index 51954b9afc2d6d851a4b8fed92e1d481dc702f8f..7bbdeec287bd1a3ac4b0a06fa94f8cb1ea5895f1 100644
|
| --- a/components/autofill/core/browser/autofill_external_delegate.cc
|
| +++ b/components/autofill/core/browser/autofill_external_delegate.cc
|
| @@ -8,7 +8,6 @@
|
| #include "components/autofill/core/browser/autocomplete_history_manager.h"
|
| #include "components/autofill/core/browser/autofill_driver.h"
|
| #include "components/autofill/core/browser/autofill_manager.h"
|
| -#include "content/public/browser/web_contents.h"
|
| #include "grit/component_strings.h"
|
| #include "third_party/WebKit/public/web/WebAutofillClient.h"
|
| #include "ui/base/l10n/l10n_util.h"
|
| @@ -18,12 +17,11 @@ using blink::WebAutofillClient;
|
| namespace autofill {
|
|
|
| AutofillExternalDelegate::AutofillExternalDelegate(
|
| - content::WebContents* web_contents,
|
| AutofillManager* autofill_manager,
|
| AutofillDriver* autofill_driver)
|
| : autofill_manager_(autofill_manager),
|
| autofill_driver_(autofill_driver),
|
| - password_autofill_manager_(web_contents),
|
| + password_autofill_manager_(autofill_driver),
|
| autofill_query_id_(0),
|
| display_warning_if_disabled_(false),
|
| has_autofill_suggestion_(false),
|
|
|