OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #include "chrome/browser/autofill/form_structure.h" | 5 #include "chrome/browser/autofill/form_structure.h" |
6 | 6 |
7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "base/sha1.h" | 9 #include "base/sha1.h" |
10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
11 #include "base/utf_string_conversions.h" | 11 #include "base/utf_string_conversions.h" |
12 #include "chrome/browser/autofill/field_types.h" | 12 #include "chrome/browser/autofill/field_types.h" |
13 #include "chrome/browser/autofill/form_field.h" | 13 #include "chrome/browser/autofill/form_field.h" |
14 #include "third_party/libjingle/files/talk/xmllite/xmlelement.h" | 14 #include "third_party/libjingle/files/talk/xmllite/xmlelement.h" |
| 15 #include "webkit/glue/form_data.h" |
15 #include "webkit/glue/form_field.h" | 16 #include "webkit/glue/form_field.h" |
16 #include "webkit/glue/form_field_values.h" | 17 #include "webkit/glue/form_field_values.h" |
17 | 18 |
18 const char* kFormMethodGet = "get"; | 19 const char* kFormMethodGet = "get"; |
19 const char* kFormMethodPost = "post"; | 20 const char* kFormMethodPost = "post"; |
20 | 21 |
21 // XML attribute names | 22 // XML attribute names |
22 const char* const kAttributeClientVersion = "clientversion"; | 23 const char* const kAttributeClientVersion = "clientversion"; |
23 const char* const kAttributeAutoFillUsed = "autofillused"; | 24 const char* const kAttributeAutoFillUsed = "autofillused"; |
24 const char* const kAttributeSignature = "signature"; | 25 const char* const kAttributeSignature = "signature"; |
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 | 196 |
196 const AutoFillField* FormStructure::field(int index) const { | 197 const AutoFillField* FormStructure::field(int index) const { |
197 return fields_[index]; | 198 return fields_[index]; |
198 } | 199 } |
199 | 200 |
200 size_t FormStructure::field_count() const { | 201 size_t FormStructure::field_count() const { |
201 // Don't count the NULL terminator. | 202 // Don't count the NULL terminator. |
202 return fields_.size() - 1; | 203 return fields_.size() - 1; |
203 } | 204 } |
204 | 205 |
| 206 bool FormStructure::operator!=(const FormData& form) const { |
| 207 // TODO(jhawkins): Is this enough to differentiate a form? |
| 208 if (UTF8ToUTF16(form_name_) != form.name || |
| 209 source_url_ != form.origin || |
| 210 target_url_ != form.action) { |
| 211 return true; |
| 212 } |
| 213 |
| 214 // TODO(jhawkins): Compare field names, IDs and labels once we have labels |
| 215 // set up. |
| 216 |
| 217 return false; |
| 218 } |
| 219 |
205 void FormStructure::GetHeuristicFieldInfo(FieldTypeMap* field_type_map) { | 220 void FormStructure::GetHeuristicFieldInfo(FieldTypeMap* field_type_map) { |
206 FormFieldSet fields = FormFieldSet(this); | 221 FormFieldSet fields = FormFieldSet(this); |
207 | 222 |
208 FormFieldSet::const_iterator field; | 223 FormFieldSet::const_iterator field; |
209 for (field = fields.begin(); field != fields.end(); field++) { | 224 for (field = fields.begin(); field != fields.end(); field++) { |
210 bool ok = (*field)->GetFieldInfo(field_type_map); | 225 bool ok = (*field)->GetFieldInfo(field_type_map); |
211 DCHECK(ok); | 226 DCHECK(ok); |
212 } | 227 } |
213 } | 228 } |
OLD | NEW |