summaryrefslogtreecommitdiffstats
path: root/webkit/glue/autofill_form.h
diff options
context:
space:
mode:
authorpetersont@google.com <petersont@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-23 22:24:41 +0000
committerpetersont@google.com <petersont@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-23 22:24:41 +0000
commit9dce797f76e410bf3ddec8af75e74c1f0e07dae0 (patch)
treeb8fa18443bd91e2c1868e3c1d818adef03998de7 /webkit/glue/autofill_form.h
parentb5d7cc7ad91885ed15fa285505d5eba283f193b7 (diff)
downloadchromium_src-9dce797f76e410bf3ddec8af75e74c1f0e07dae0.zip
chromium_src-9dce797f76e410bf3ddec8af75e74c1f0e07dae0.tar.gz
chromium_src-9dce797f76e410bf3ddec8af75e74c1f0e07dae0.tar.bz2
Review URL: http://codereview.chromium.org/8125
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3871 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/autofill_form.h')
-rw-r--r--webkit/glue/autofill_form.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/webkit/glue/autofill_form.h b/webkit/glue/autofill_form.h
deleted file mode 100644
index a817137..0000000
--- a/webkit/glue/autofill_form.h
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright (c) 2006-2008 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 WEBKIT_GLUE_AUTOFILL_FORM_H_
-#define WEBKIT_GLUE_AUTOFILL_FORM_H_
-
-#include <string>
-#include <vector>
-
-// The AutofillForm struct represents a single HTML form together with the
-// values entered in the fields.
-
-struct AutofillForm {
- // Struct for storing name/value pairs.
- struct Element {
- Element() {}
- Element(const std::wstring& in_name, const std::wstring& in_value) {
- name = in_name;
- value = in_value;
- }
- std::wstring name;
- std::wstring value;
- };
-
- // A vector of all the input fields in the form.
- std::vector<Element> elements;
-};
-
-#endif // WEBKIT_GLUE_AUTOFILL_FORM_H_