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

Unified Diff: app/l10n_util.cc

Issue 3750001: base: Move SplitString functions into the base namespace and update the callers. (Closed) Base URL: git://git.chromium.org/chromium.git
Patch Set: brett review, reverted changes in o3d due to it's using an old base revision Created 10 years, 2 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 | « no previous file | app/text_elider.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: app/l10n_util.cc
diff --git a/app/l10n_util.cc b/app/l10n_util.cc
index 00e8a61a98317259c02d11d881f8974233732547..6b2520227974c241effec565156a29e105cb7e23 100644
--- a/app/l10n_util.cc
+++ b/app/l10n_util.cc
@@ -339,7 +339,7 @@ std::string GetSystemLocale() {
void SplitAndNormalizeLanguageList(const std::string& env_language,
std::vector<std::string>* result) {
std::vector<std::string> langs;
- SplitString(env_language, ':', &langs);
+ base::SplitString(env_language, ':', &langs);
std::vector<std::string>::iterator i = langs.begin();
for (; i != langs.end(); ++i) {
size_t end_pos = i->find_first_of(".@");
« no previous file with comments | « no previous file | app/text_elider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698