| Index: components/autofill/browser/autofill_external_delegate.cc
|
| diff --git a/components/autofill/browser/autofill_external_delegate.cc b/components/autofill/browser/autofill_external_delegate.cc
|
| index 9985d317ffa99415ff2133e052c257784ec8195a..d32fc9d20f38c4f2eed79114f90702b785fb6c71 100644
|
| --- a/components/autofill/browser/autofill_external_delegate.cc
|
| +++ b/components/autofill/browser/autofill_external_delegate.cc
|
| @@ -1,10 +1,10 @@
|
| // Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
| +#include "components/autofill/browser/autofill_external_delegate.h"
|
|
|
| #include "base/utf_string_conversions.h"
|
| #include "components/autofill/browser/autocomplete_history_manager.h"
|
| -#include "components/autofill/browser/autofill_external_delegate.h"
|
| #include "components/autofill/browser/autofill_manager.h"
|
| #include "components/autofill/common/autofill_messages.h"
|
| #include "content/public/browser/navigation_controller.h"
|
| @@ -26,6 +26,8 @@ using content::RenderViewHost;
|
| using WebKit::WebAutofillClient;
|
|
|
| DEFINE_WEB_CONTENTS_USER_DATA_KEY(autofill::AutofillExternalDelegate);
|
| +//DEFINE_EXPORTED_WEB_CONTENTS_USER_DATA_KEY(autofill::AutofillExternalDelegate,
|
| +// AUTOFILL_EXPORT);
|
|
|
| namespace autofill {
|
|
|
| @@ -63,6 +65,12 @@ AutofillExternalDelegate::AutofillExternalDelegate(
|
| &(web_contents->GetController())));
|
| }
|
|
|
| +AutofillExternalDelegate::AutofillExternalDelegate(
|
| + content::WebContents* web_contents)
|
| + : password_autofill_manager_(web_contents) {
|
| + NOTREACHED();
|
| +}
|
| +
|
| AutofillExternalDelegate::~AutofillExternalDelegate() {}
|
|
|
| void AutofillExternalDelegate::OnQuery(int query_id,
|
|
|