Index: components/autofill/core/browser/validation.cc |
diff --git a/components/autofill/core/browser/validation.cc b/components/autofill/core/browser/validation.cc |
index 177785d4c6faa06d097ae6555160dfb73dec1aeb..e1edf73d6136b8c66f215de0dd6d2d06d1ec6e3c 100644 |
--- a/components/autofill/core/browser/validation.cc |
+++ b/components/autofill/core/browser/validation.cc |
@@ -28,8 +28,8 @@ bool IsValidCreditCardExpirationDate(const base::string16& year, |
const base::string16& month, |
const base::Time& now) { |
base::string16 year_cleaned, month_cleaned; |
- TrimWhitespace(year, TRIM_ALL, &year_cleaned); |
- TrimWhitespace(month, TRIM_ALL, &month_cleaned); |
+ base::TrimWhitespace(year, base::TRIM_ALL, &year_cleaned); |
+ base::TrimWhitespace(month, base::TRIM_ALL, &month_cleaned); |
if (year_cleaned.length() != 4) |
return false; |