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

Unified Diff: chrome/browser/autofill/form_structure.h

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/autofill_manager.cc ('k') | chrome/browser/autofill/form_structure.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autofill/form_structure.h
===================================================================
--- chrome/browser/autofill/form_structure.h (revision 39307)
+++ chrome/browser/autofill/form_structure.h (working copy)
@@ -14,6 +14,8 @@
#include "chrome/browser/autofill/field_types.h"
#include "googleurl/src/gurl.h"
+struct FormData;
+
namespace webkit_glue {
class FormFieldValues;
}
@@ -58,11 +60,14 @@
return fields_.end();
}
+ bool operator!=(const FormData& form) const;
+
private:
// Associates the field with the heuristic type for each of the field views.
void GetHeuristicFieldInfo(FieldTypeMap* field_types_map);
// The name of the form.
+ // TODO(jhawkins): string16
std::string form_name_;
// The source URL.
« no previous file with comments | « chrome/browser/autofill/autofill_manager.cc ('k') | chrome/browser/autofill/form_structure.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698