Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / components / autofill / core / browser / validation.cc
index e1edf73..62509cb 100644 (file)
@@ -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;