Index: components/autofill/core/browser/validation.cc |
diff --git a/components/autofill/core/browser/validation.cc b/components/autofill/core/browser/validation.cc |
index e1edf73d6136b8c66f215de0dd6d2d06d1ec6e3c..62509cbfbb553ce82534a435c894dc39aff0079e 100644 |
--- a/components/autofill/core/browser/validation.cc |
+++ b/components/autofill/core/browser/validation.cc |
@@ -182,7 +182,7 @@ bool IsSSN(const base::string16& text) { |
// http://www.socialsecurity.gov/employer/stateweb.htm |
// http://www.socialsecurity.gov/employer/ssnvhighgroup.htm |
- if (number_string.length() != 9 || !IsStringASCII(number_string)) |
+ if (number_string.length() != 9 || !base::IsStringASCII(number_string)) |
return false; |
int area; |