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

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

Issue 7585020: Remove Autofill support for the ECML standard, as it is virtually unused. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove ECML files from the repository Created 9 years, 4 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/email_field.cc ('k') | chrome/browser/autofill/form_field.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autofill/form_field.h
diff --git a/chrome/browser/autofill/form_field.h b/chrome/browser/autofill/form_field.h
index f4691a83f2698d5ff3e980de489bfdcd8642f198..98063c89bb5c557cbe2cfc691e7072756e8bdd52 100644
--- a/chrome/browser/autofill/form_field.h
+++ b/chrome/browser/autofill/form_field.h
@@ -21,7 +21,7 @@ class AutofillScanner;
// name, phone number, or address field.
class FormField {
public:
- typedef FormField* ParseFunction(AutofillScanner* scanner, bool is_ecml);
+ typedef FormField* ParseFunction(AutofillScanner* scanner);
virtual ~FormField() {}
@@ -106,12 +106,10 @@ class FormField {
// Perform a "pass" over the |fields| where each pass uses the supplied
// |parse| method to match content to a given field type.
- // |is_ecml| designates whether to match only ECML fields.
// |fields| is both an input and an output parameter. Upon exit |fields|
// holds any remaining unclassified fields for further processing.
- // Classification results of the proceessed fields are stored in |map|.
+ // Classification results of the processed fields are stored in |map|.
static void ParseFormFieldsPass(ParseFunction parse,
- bool is_ecml,
std::vector<const AutofillField*>* fields,
FieldTypeMap* map);
« no previous file with comments | « chrome/browser/autofill/email_field.cc ('k') | chrome/browser/autofill/form_field.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698