| Index: webkit/glue/form_data.h
|
| ===================================================================
|
| --- webkit/glue/form_data.h (revision 58052)
|
| +++ webkit/glue/form_data.h (working copy)
|
| @@ -23,6 +23,8 @@
|
| GURL origin;
|
| // The action target of the form.
|
| GURL action;
|
| + // true if this form was submitted by a user gesture and not javascript.
|
| + bool user_submitted;
|
| // A vector of all the input fields in the form.
|
| std::vector<FormField> fields;
|
|
|
| @@ -34,6 +36,7 @@
|
| StringToLowerASCII(method) == StringToLowerASCII(form.method) &&
|
| origin == form.origin &&
|
| action == form.action &&
|
| + user_submitted == form.user_submitted &&
|
| fields == form.fields);
|
| }
|
| };
|
|
|