summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
authorjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-01 00:45:29 +0000
committerjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-01 00:45:29 +0000
commitc86ff370355b6cfe833a743e1d176de160e40c8a (patch)
treef0600bcc4573f53b7a3c0d59c1058a17e1eeed0c /webkit
parent93f21e4ceb7b2bda9d50657cce47f2e640e567b5 (diff)
downloadchromium_src-c86ff370355b6cfe833a743e1d176de160e40c8a.zip
chromium_src-c86ff370355b6cfe833a743e1d176de160e40c8a.tar.gz
chromium_src-c86ff370355b6cfe833a743e1d176de160e40c8a.tar.bz2
AutoFill: Store the form method on the FormData object. This is another step in consolidating FormData and FormFieldValues.
BUG=33032 TEST=none Review URL: http://codereview.chromium.org/1558012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43298 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r--webkit/glue/form_data.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/webkit/glue/form_data.h b/webkit/glue/form_data.h
index 5309a2e..9d9061d 100644
--- a/webkit/glue/form_data.h
+++ b/webkit/glue/form_data.h
@@ -16,6 +16,8 @@ namespace webkit_glue {
struct FormData {
// The name of the form.
string16 name;
+ // GET or POST.
+ string16 method;
// The URL (minus query parameters) containing the form
GURL origin;
// The action target of the form