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

Unified Diff: components/autofill/core/browser/email_field.cc

Issue 381613005: [Autofill] Autofill fails to fill credit card number when split across fields. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Incorporated review inputs. Created 6 years, 3 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: components/autofill/core/browser/email_field.cc
diff --git a/components/autofill/core/browser/email_field.cc b/components/autofill/core/browser/email_field.cc
index 33a10e9c25ea084bb251fa1824928048d82e15c6..d03e24cf5f9f443b629a7fa314529ad1a53d1f18 100644
--- a/components/autofill/core/browser/email_field.cc
+++ b/components/autofill/core/browser/email_field.cc
@@ -13,7 +13,7 @@ namespace autofill {
// static
FormField* EmailField::Parse(AutofillScanner* scanner) {
- const AutofillField* field;
+ AutofillField* field;
if (ParseFieldSpecifics(scanner, base::UTF8ToUTF16(autofill::kEmailRe),
MATCH_DEFAULT | MATCH_EMAIL, &field)) {
return new EmailField(field);
« no previous file with comments | « components/autofill/core/browser/credit_card_field_unittest.cc ('k') | components/autofill/core/browser/form_field.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698