Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(106)

Unified Diff: components/autofill/core/browser/contact_info.cc

Issue 112433004: Update uses of UTF conversions in chrome_frame/, chromeos/, components/ to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.
« no previous file with comments | « components/autofill/core/browser/autofill_test_utils.cc ('k') | components/autofill/core/browser/contact_info_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698