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

Unified Diff: components/autofill/core/browser/android/auxiliary_profiles_android.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/android/auxiliary_profiles_android.cc
diff --git a/components/autofill/core/browser/android/auxiliary_profiles_android.cc b/components/autofill/core/browser/android/auxiliary_profiles_android.cc
index 6d0b65b74d835f75d121505dc891248bd9b45927..e215d98d7256176502a64cdc5e1608f9007dd671 100644
--- a/components/autofill/core/browser/android/auxiliary_profiles_android.cc
+++ b/components/autofill/core/browser/android/auxiliary_profiles_android.cc
@@ -45,7 +45,7 @@ base::string16 CollapseAddress(const base::string16& post_office_box,
if (!neighborhood.empty())
accumulator.push_back(neighborhood);
- return JoinString(accumulator, ASCIIToUTF16(", "));
+ return JoinString(accumulator, base::ASCIIToUTF16(", "));
}
} // namespace

Powered by Google App Engine
This is Rietveld 408576698