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

Unified Diff: chrome/browser/autofill/name_field.cc

Issue 7043027: Autofill refactor form_field.h/cc. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 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
Index: chrome/browser/autofill/name_field.cc
diff --git a/chrome/browser/autofill/name_field.cc b/chrome/browser/autofill/name_field.cc
index 87f98cea3989bcb78d520fd30380fe716747f721..feeb987508e5e2417503562cdb6c413719fa0f09 100644
--- a/chrome/browser/autofill/name_field.cc
+++ b/chrome/browser/autofill/name_field.cc
@@ -8,11 +8,14 @@
#include "base/memory/scoped_ptr.h"
#include "base/string_util.h"
#include "base/utf_string_conversions.h"
+#include "chrome/browser/autofill/autofill_ecml.h"
#include "chrome/browser/autofill/autofill_scanner.h"
#include "chrome/browser/autofill/autofill_type.h"
#include "grit/autofill_resources.h"
#include "ui/base/l10n/l10n_util.h"
+using autofill::GetEcmlPattern;
+
NameField* NameField::Parse(AutofillScanner* scanner, bool is_ecml) {
if (scanner->IsEnd())
return NULL;
@@ -24,21 +27,25 @@ NameField* NameField::Parse(AutofillScanner* scanner, bool is_ecml) {
return field;
}
-bool FullNameField::GetFieldInfo(FieldTypeMap* field_type_map) const {
- return Add(field_type_map, field_, NAME_FULL);
+bool FullNameField::ClassifyField(FieldTypeMap* map) const {
+ return AddClassification(field_, NAME_FULL, map);
}
Ilya Sherman 2011/05/19 05:44:16 nit: Please move this to be below Parse()
dhollowa 2011/05/19 17:53:08 Done.
FullNameField* FullNameField::Parse(AutofillScanner* scanner) {
// Exclude labels containing the string "username", which typically
// denotes a login ID rather than the user's actual name.
- const AutofillField* field = scanner->Cursor();
- if (Match(field, l10n_util::GetStringUTF16(IDS_AUTOFILL_USERNAME_RE), false))
+ scanner->SaveCursor();
+ bool username = ParseField(
Ilya Sherman 2011/05/19 05:44:16 nit: Perhaps "is_username"?
dhollowa 2011/05/19 17:53:08 Done.
+ scanner, l10n_util::GetStringUTF16(IDS_AUTOFILL_USERNAME_RE), NULL);
+ scanner->Rewind();
+ if (username)
return NULL;
// Searching for any label containing the word "name" is too general;
// for example, Travelocity_Edit travel profile.html contains a field
// "Travel Profile Name".
- if (ParseText(scanner, l10n_util::GetStringUTF16(IDS_AUTOFILL_NAME_RE),
+ const AutofillField* field = NULL;
+ if (ParseField(scanner, l10n_util::GetStringUTF16(IDS_AUTOFILL_NAME_RE),
&field))
Ilya Sherman 2011/05/19 05:44:16 nit: indentation
dhollowa 2011/05/19 17:53:08 Done.
return new FullNameField(field);
@@ -49,14 +56,6 @@ FullNameField::FullNameField(const AutofillField* field)
: field_(field) {
}
-bool FirstLastNameField::GetFieldInfo(FieldTypeMap* field_type_map) const {
- bool ok = Add(field_type_map, first_name_, NAME_FIRST);
- ok = ok && Add(field_type_map, last_name_, NAME_LAST);
- AutofillFieldType type = middle_initial_ ? NAME_MIDDLE_INITIAL : NAME_MIDDLE;
- ok = ok && Add(field_type_map, middle_name_, type);
- return ok;
-}
-
FirstLastNameField* FirstLastNameField::ParseSpecificName(
AutofillScanner* scanner) {
// Some pages (e.g. Overstock_comBilling.html, SmithsonianCheckout.html)
@@ -65,11 +64,11 @@ FirstLastNameField* FirstLastNameField::ParseSpecificName(
scanner->SaveCursor();
const AutofillField* next;
- if (ParseText(scanner,
+ if (ParseField(scanner,
l10n_util::GetStringUTF16(IDS_AUTOFILL_NAME_SPECIFIC_RE),
&v->first_name_) &&
Ilya Sherman 2011/05/19 05:44:16 nit: indentation
dhollowa 2011/05/19 17:53:08 Done.
- ParseEmptyText(scanner, &next)) {
- if (ParseEmptyText(scanner, &v->last_name_)) {
+ ParseEmptyLabel(scanner, &next)) {
+ if (ParseEmptyLabel(scanner, &v->last_name_)) {
// There are three name fields; assume that the middle one is a
// middle initial (it is, at least, on SmithsonianCheckout.html).
v->middle_name_ = next;
@@ -98,26 +97,28 @@ FirstLastNameField* FirstLastNameField::ParseComponentNames(
// so we match "initials" here (and just fill in a first name there,
// American-style).
// The ".*first$" matches fields ending in "first" (example in sample8.html).
- if (!ParseText(scanner, l10n_util::GetStringUTF16(IDS_AUTOFILL_FIRST_NAME_RE),
- &v->first_name_))
+ if (!ParseField(scanner,
+ l10n_util::GetStringUTF16(IDS_AUTOFILL_FIRST_NAME_RE),
+ &v->first_name_)) {
return NULL;
+ }
// We check for a middle initial before checking for a middle name
// because at least one page (PC Connection.html) has a field marked
// as both (the label text is "MI" and the element name is
// "txtmiddlename"); such a field probably actually represents a
// middle initial.
- if (ParseText(scanner,
+ if (ParseField(scanner,
l10n_util::GetStringUTF16(IDS_AUTOFILL_MIDDLE_INITIAL_RE),
&v->middle_name_)) {
v->middle_initial_ = true;
} else {
- ParseText(scanner, l10n_util::GetStringUTF16(IDS_AUTOFILL_MIDDLE_NAME_RE),
+ ParseField(scanner, l10n_util::GetStringUTF16(IDS_AUTOFILL_MIDDLE_NAME_RE),
&v->middle_name_);
}
// The ".*last$" matches fields ending in "last" (example in sample8.html).
- if (ParseText(scanner, l10n_util::GetStringUTF16(IDS_AUTOFILL_LAST_NAME_RE),
+ if (ParseField(scanner, l10n_util::GetStringUTF16(IDS_AUTOFILL_LAST_NAME_RE),
&v->last_name_)) {
return v.release();
}
@@ -133,14 +134,14 @@ FirstLastNameField* FirstLastNameField::ParseEcmlName(
string16 pattern = GetEcmlPattern(kEcmlShipToFirstName,
kEcmlBillToFirstName, '|');
- if (!ParseText(scanner, pattern, &field->first_name_))
+ if (!ParseField(scanner, pattern, &field->first_name_))
return NULL;
pattern = GetEcmlPattern(kEcmlShipToMiddleName, kEcmlBillToMiddleName, '|');
- ParseText(scanner, pattern, &field->middle_name_);
+ ParseField(scanner, pattern, &field->middle_name_);
pattern = GetEcmlPattern(kEcmlShipToLastName, kEcmlBillToLastName, '|');
- if (ParseText(scanner, pattern, &field->last_name_))
+ if (ParseField(scanner, pattern, &field->last_name_))
return field.release();
scanner->Rewind();
@@ -164,3 +165,11 @@ FirstLastNameField::FirstLastNameField()
last_name_(NULL),
middle_initial_(false) {
}
+
+bool FirstLastNameField::ClassifyField(FieldTypeMap* map) const {
+ bool ok = AddClassification(first_name_, NAME_FIRST, map);
+ ok = ok && AddClassification(last_name_, NAME_LAST, map);
+ AutofillFieldType type = middle_initial_ ? NAME_MIDDLE_INITIAL : NAME_MIDDLE;
+ ok = ok && AddClassification(middle_name_, type, map);
+ return ok;
+}

Powered by Google App Engine
This is Rietveld 408576698