summaryrefslogtreecommitdiffstats
path: root/components/autofill/core/browser/validation.cc
diff options
context:
space:
mode:
Diffstat (limited to 'components/autofill/core/browser/validation.cc')
-rw-r--r--components/autofill/core/browser/validation.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/autofill/core/browser/validation.cc b/components/autofill/core/browser/validation.cc
index e1edf73..62509cb 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;