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

Unified Diff: components/autofill/core/browser/address_field.h

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
« no previous file with comments | « no previous file | components/autofill/core/browser/address_field_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/autofill/core/browser/address_field.h
diff --git a/components/autofill/core/browser/address_field.h b/components/autofill/core/browser/address_field.h
index 2d5ff512abac1cf5ebc2207c41c095f55f842992..c094922fdfaaf9c1b10605864062139d16094267 100644
--- a/components/autofill/core/browser/address_field.h
+++ b/components/autofill/core/browser/address_field.h
@@ -49,15 +49,15 @@ class AddressField : public FormField {
bool ParseCity(AutofillScanner* scanner);
bool ParseState(AutofillScanner* scanner);
- const AutofillField* company_;
- const AutofillField* address1_;
- const AutofillField* address2_;
- const AutofillField* street_address_;
- const AutofillField* city_;
- const AutofillField* state_;
- const AutofillField* zip_;
- const AutofillField* zip4_; // optional ZIP+4; we don't fill this yet.
- const AutofillField* country_;
+ AutofillField* company_;
+ AutofillField* address1_;
+ AutofillField* address2_;
+ AutofillField* street_address_;
+ AutofillField* city_;
+ AutofillField* state_;
+ AutofillField* zip_;
+ AutofillField* zip4_; // optional ZIP+4; we don't fill this yet.
+ AutofillField* country_;
DISALLOW_COPY_AND_ASSIGN(AddressField);
};
« no previous file with comments | « no previous file | components/autofill/core/browser/address_field_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698