Index: components/autofill/core/browser/contact_info.cc |
diff --git a/components/autofill/core/browser/contact_info.cc b/components/autofill/core/browser/contact_info.cc |
index 9bd91c3076a5dd74d9c937424d7c743f9ecf58f9..0793bb5ff310c507941a7edd69bca4dfe57345b3 100644 |
--- a/components/autofill/core/browser/contact_info.cc |
+++ b/components/autofill/core/browser/contact_info.cc |
@@ -121,7 +121,7 @@ void NameInfo::SetFullName(const base::string16& full) { |
last_ = base::string16(); |
std::vector<base::string16> full_name_tokens; |
- Tokenize(full, ASCIIToUTF16(" "), &full_name_tokens); |
+ Tokenize(full, base::ASCIIToUTF16(" "), &full_name_tokens); |
// There are four possibilities: empty; first name; first and last names; |
// first, middle (possibly multiple strings) and then the last name. |