diff options
Diffstat (limited to 'chrome/browser/autofill/form_structure.h')
-rw-r--r-- | chrome/browser/autofill/form_structure.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/autofill/form_structure.h b/chrome/browser/autofill/form_structure.h index 597ff9b..2c58f97 100644 --- a/chrome/browser/autofill/form_structure.h +++ b/chrome/browser/autofill/form_structure.h @@ -40,6 +40,10 @@ class FormStructure { explicit FormStructure(const webkit_glue::FormData& form); virtual ~FormStructure(); + // Runs several heuristics against the form fields to determine their possible + // types. + void DetermineHeuristicTypes(); + // Encodes the XML upload request from this FormStructure. bool EncodeUploadRequest(bool auto_fill_used, std::string* encoded_xml) const; @@ -128,10 +132,6 @@ class FormStructure { UPLOAD, }; - // Runs several heuristics against the form fields to determine their possible - // types. - void GetHeuristicAutofillTypes(); - // Associates the field with the heuristic type for each of the field views. void GetHeuristicFieldInfo(FieldTypeMap* field_types_map); |