| 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" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 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. | 26 // true if this form was submitted by a user gesture and not javascript. |
| 27 bool user_submitted; | 27 bool user_submitted; |
| 28 // A vector of all the input fields in the form. | 28 // A vector of all the input fields in the form. |
| 29 std::vector<FormField> fields; | 29 std::vector<FormField> fields; |
| 30 | 30 |
| 31 FormData() : user_submitted(false) {} | 31 FormData(); |
| 32 FormData(const FormData& data); |
| 33 ~FormData(); |
| 32 | 34 |
| 33 // Used by FormStructureTest. | 35 // Used by FormStructureTest. |
| 34 inline bool operator==(const FormData& form) const { | 36 bool operator==(const FormData& form) const; |
| 35 return (name == form.name && | |
| 36 StringToLowerASCII(method) == StringToLowerASCII(form.method) && | |
| 37 origin == form.origin && | |
| 38 action == form.action && | |
| 39 user_submitted == form.user_submitted && | |
| 40 fields == form.fields); | |
| 41 } | |
| 42 }; | 37 }; |
| 43 | 38 |
| 44 } // namespace webkit_glue | 39 } // namespace webkit_glue |
| 45 | 40 |
| 46 #endif // WEBKIT_GLUE_FORM_DATA_H__ | 41 #endif // WEBKIT_GLUE_FORM_DATA_H__ |
| OLD | NEW |