Index: components/autofill/core/browser/credit_card.cc |
diff --git a/components/autofill/core/browser/credit_card.cc b/components/autofill/core/browser/credit_card.cc |
index 25a2329b72486b539b61c09ff3c90643bb6b40ba..ee4aa1e58293e57c081239cea36e66d06484eab9 100644 |
--- a/components/autofill/core/browser/credit_card.cc |
+++ b/components/autofill/core/browser/credit_card.cc |
@@ -75,7 +75,7 @@ bool ConvertMonth(const base::string16& month, |
// Otherwise, try parsing the |month| as a named month, e.g. "January" or |
// "Jan". |
- base::string16 lowercased_month = StringToLowerASCII(month); |
+ base::string16 lowercased_month = base::StringToLowerASCII(month); |
UErrorCode status = U_ZERO_ERROR; |
icu::Locale locale(app_locale.c_str()); |
@@ -88,7 +88,7 @@ bool ConvertMonth(const base::string16& month, |
for (int32_t i = 0; i < num_months; ++i) { |
const base::string16 icu_month = base::string16(months[i].getBuffer(), |
months[i].length()); |
- if (lowercased_month == StringToLowerASCII(icu_month)) { |
+ if (lowercased_month == base::StringToLowerASCII(icu_month)) { |
*num = i + 1; // Adjust from 0-indexed to 1-indexed. |
return true; |
} |
@@ -98,7 +98,7 @@ bool ConvertMonth(const base::string16& month, |
for (int32_t i = 0; i < num_months; ++i) { |
const base::string16 icu_month = base::string16(months[i].getBuffer(), |
months[i].length()); |
- if (lowercased_month == StringToLowerASCII(icu_month)) { |
+ if (lowercased_month == base::StringToLowerASCII(icu_month)) { |
*num = i + 1; // Adjust from 0-indexed to 1-indexed. |
return true; |
} |