| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef WEBKIT_GLUE_FORM_DATA_H__ | 5 #ifndef WEBKIT_GLUE_FORM_DATA_H__ |
| 6 #define WEBKIT_GLUE_FORM_DATA_H__ | 6 #define WEBKIT_GLUE_FORM_DATA_H__ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
| 11 #include "googleurl/src/gurl.h" | 11 #include "googleurl/src/gurl.h" |
| 12 #include "webkit/glue/form_field.h" | 12 #include "webkit/glue/form_field.h" |
| 13 | 13 |
| 14 namespace webkit_glue { | 14 namespace webkit_glue { |
| 15 | 15 |
| 16 // Holds information about a form to be filled and/or submitted. | 16 // Holds information about a form to be filled and/or submitted. |
| 17 struct FormData { | 17 struct FormData { |
| 18 // The name of the form. | 18 // The name of the form. |
| 19 string16 name; | 19 string16 name; |
| 20 // GET or POST. | 20 // GET or POST. |
| 21 string16 method; | 21 string16 method; |
| 22 // The URL (minus query parameters) containing the form. | 22 // The URL (minus query parameters) containing the form. |
| 23 GURL origin; | 23 GURL origin; |
| 24 // The action target of the form. | 24 // The action target of the form. |
| 25 GURL action; | 25 GURL action; |
| 26 // true if this form was submitted by a user gesture and not javascript. |
| 27 bool user_submitted; |
| 26 // A vector of all the input fields in the form. | 28 // A vector of all the input fields in the form. |
| 27 std::vector<FormField> fields; | 29 std::vector<FormField> fields; |
| 28 | 30 |
| 29 FormData() : user_submitted(false) {} | 31 FormData() : user_submitted(false) {} |
| 30 | 32 |
| 31 // Used by FormStructureTest. | 33 // Used by FormStructureTest. |
| 32 inline bool operator==(const FormData& form) const { | 34 inline bool operator==(const FormData& form) const { |
| 33 return (name == form.name && | 35 return (name == form.name && |
| 34 StringToLowerASCII(method) == StringToLowerASCII(form.method) && | 36 StringToLowerASCII(method) == StringToLowerASCII(form.method) && |
| 35 origin == form.origin && | 37 origin == form.origin && |
| 36 action == form.action && | 38 action == form.action && |
| 39 user_submitted == form.user_submitted && |
| 37 fields == form.fields); | 40 fields == form.fields); |
| 38 } | 41 } |
| 39 }; | 42 }; |
| 40 | 43 |
| 41 } // namespace webkit_glue | 44 } // namespace webkit_glue |
| 42 | 45 |
| 43 #endif // WEBKIT_GLUE_FORM_DATA_H__ | 46 #endif // WEBKIT_GLUE_FORM_DATA_H__ |
| OLD | NEW |