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

Unified 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autofill/form_structure.cc
===================================================================
--- chrome/browser/autofill/form_structure.cc (revision 39307)
+++ chrome/browser/autofill/form_structure.cc (working copy)
@@ -12,6 +12,7 @@
#include "chrome/browser/autofill/field_types.h"
#include "chrome/browser/autofill/form_field.h"
#include "third_party/libjingle/files/talk/xmllite/xmlelement.h"
+#include "webkit/glue/form_data.h"
#include "webkit/glue/form_field.h"
#include "webkit/glue/form_field_values.h"
@@ -202,6 +203,20 @@
return fields_.size() - 1;
}
+bool FormStructure::operator!=(const FormData& form) const {
+ // TODO(jhawkins): Is this enough to differentiate a form?
+ if (UTF8ToUTF16(form_name_) != form.name ||
+ source_url_ != form.origin ||
+ target_url_ != form.action) {
+ return true;
+ }
+
+ // TODO(jhawkins): Compare field names, IDs and labels once we have labels
+ // set up.
+
+ return false;
+}
+
void FormStructure::GetHeuristicFieldInfo(FieldTypeMap* field_type_map) {
FormFieldSet fields = FormFieldSet(this);
« 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