Index: components/autofill/core/browser/validation.cc |
diff --git a/components/autofill/core/browser/validation.cc b/components/autofill/core/browser/validation.cc |
index a8aef35f7caafa62f9c31b03c238725922745d03..57a096e931247f9b5889ede35e1790a1920794f8 100644 |
--- a/components/autofill/core/browser/validation.cc |
+++ b/components/autofill/core/browser/validation.cc |
@@ -157,7 +157,7 @@ bool IsValidZip(const base::string16& text) { |
bool IsSSN(const string16& text) { |
string16 number_string; |
- RemoveChars(text, kSSNSeparators, &number_string); |
+ base::RemoveChars(text, kSSNSeparators, &number_string); |
// A SSN is of the form AAA-GG-SSSS (A = area number, G = group number, S = |
// serial number). The validation we do here is simply checking if the area, |