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

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

Issue 1172753003: Move LowerCaseEqualsASCII to base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@string_util
Patch Set: Created 5 years, 6 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/credit_card_field.cc
diff --git a/components/autofill/core/browser/credit_card_field.cc b/components/autofill/core/browser/credit_card_field.cc
index d6b67dca712783a865789155647fd340a5ee59dd..3b24ec38c1851268949aaa7ce297cda4ded4c9d8 100644
--- a/components/autofill/core/browser/credit_card_field.cc
+++ b/components/autofill/core/browser/credit_card_field.cc
@@ -344,7 +344,8 @@ bool CreditCardField::ClassifyField(ServerFieldTypeMap* map) const {
bool CreditCardField::ParseExpirationDate(AutofillScanner* scanner) {
if (!expiration_date_ &&
- LowerCaseEqualsASCII(scanner->Cursor()->form_control_type, "month")) {
+ base::LowerCaseEqualsASCII(scanner->Cursor()->form_control_type,
+ "month")) {
expiration_date_ = scanner->Cursor();
expiration_month_ = nullptr;
expiration_year_ = nullptr;
« no previous file with comments | « components/autofill/core/browser/contact_info.cc ('k') | components/autofill/core/browser/personal_data_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698