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

Unified Diff: components/autofill/browser/autofill_external_delegate.cc

Issue 13928035: WIP Component build of autofill Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: make windows compiling Created 7 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/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,

Powered by Google App Engine
This is Rietveld 408576698