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

Unified Diff: ui/base/l10n/l10n_util_android.cc

Issue 1223983002: Move WriteInto to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 months 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
« no previous file with comments | « ui/base/l10n/l10n_util.cc ('k') | ui/base/l10n/time_format.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/l10n/l10n_util_android.cc
diff --git a/ui/base/l10n/l10n_util_android.cc b/ui/base/l10n/l10n_util_android.cc
index 8530fcd08322c040e19b487271ece651457ded5a..63e0f8247fa0dd51016b54c1b8ea9980da01b159 100644
--- a/ui/base/l10n/l10n_util_android.cc
+++ b/ui/base/l10n/l10n_util_android.cc
@@ -49,7 +49,7 @@ std::string GetLocaleComponent(const std::string& locale,
std::string result;
UErrorCode error = U_ZERO_ERROR;
int32_t actual_length = uloc_func(locale.c_str(),
- WriteInto(&result, max_capacity),
+ base::WriteInto(&result, max_capacity),
max_capacity,
&error);
DCHECK(U_SUCCESS(error));
« no previous file with comments | « ui/base/l10n/l10n_util.cc ('k') | ui/base/l10n/time_format.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698