Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(246)

Side by Side Diff: chrome/browser/autofill/form_structure.cc

Issue 651002: AutoFill forms. We do this by responding to a message from WebKit which send... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « chrome/browser/autofill/form_structure.h ('k') | chrome/browser/renderer_host/render_view_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698