summaryrefslogtreecommitdiffstats
path: root/chrome/browser/autofill
diff options
context:
space:
mode:
authorjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-01-12 19:41:27 +0000
committerjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-01-12 19:41:27 +0000
commitccd6c4a70f4a38cda46bc5f8791784411acad65d (patch)
tree66eae03a46ab9b4d3dbbf5ef97f478407764ef4c /chrome/browser/autofill
parent478df55e4d60812e54e84124a94e4d80598f073f (diff)
downloadchromium_src-ccd6c4a70f4a38cda46bc5f8791784411acad65d.zip
chromium_src-ccd6c4a70f4a38cda46bc5f8791784411acad65d.tar.gz
chromium_src-ccd6c4a70f4a38cda46bc5f8791784411acad65d.tar.bz2
Add the AutoFillDialog header, needed by the cross-platform implementations to implement the autofill dialog.
BUG=none TEST=none Review URL: http://codereview.chromium.org/549014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@36030 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autofill')
-rw-r--r--chrome/browser/autofill/autofill_dialog.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/chrome/browser/autofill/autofill_dialog.h b/chrome/browser/autofill/autofill_dialog.h
new file mode 100644
index 0000000..49636fc
--- /dev/null
+++ b/chrome/browser/autofill/autofill_dialog.h
@@ -0,0 +1,19 @@
+// Copyright (c) 2010 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.
+
+#ifndef CHROME_BROWSER_AUTOFILL_AUTOFILL_DIALOG_H_
+#define CHROME_BROWSER_AUTOFILL_AUTOFILL_DIALOG_H_
+
+#include <vector>
+
+#include "chrome/browser/autofill/autofill_profile.h"
+
+// Shows the AutoFill dialog, which allows the user to edit profile information.
+// |profiles| is a vector of autofill profiles that contains the current profile
+// information. The dialog fills out the profile fields using this data. Any
+// changes made to the profile information through the dialog should be
+// transferred back into |profiles|.
+void ShowAutoFillDialog(const std::vector<AutoFillProfile>& profiles);
+
+#endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_DIALOG_H_