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

Unified Diff: ui/app_list/search/tokenized_string_char_iterator_unittest.cc

Issue 1223153003: Move JoinString to the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: windows 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/app_list/search/history.cc ('k') | ui/base/dragdrop/os_exchange_data_provider_aurax11.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/app_list/search/tokenized_string_char_iterator_unittest.cc
diff --git a/ui/app_list/search/tokenized_string_char_iterator_unittest.cc b/ui/app_list/search/tokenized_string_char_iterator_unittest.cc
index 38460145e01693e83dc05955b3a0705bef9968a3..d5fe1b30644d06a8909212b38639f9e4129415df 100644
--- a/ui/app_list/search/tokenized_string_char_iterator_unittest.cc
+++ b/ui/app_list/search/tokenized_string_char_iterator_unittest.cc
@@ -48,7 +48,7 @@ void TestEveryChar(const std::string& text, const std::string& expects) {
iter.NextChar();
}
- EXPECT_EQ(expects, JoinString(results, ' '));
+ EXPECT_EQ(expects, base::JoinString(results, " "));
TestBeyondTheEnd(&iter);
}
@@ -62,7 +62,7 @@ void TestNextToken(const std::string& text, const std::string& expects) {
iter.NextToken();
}
- EXPECT_EQ(expects, JoinString(results, ' '));
+ EXPECT_EQ(expects, base::JoinString(results, " "));
TestBeyondTheEnd(&iter);
}
@@ -80,7 +80,7 @@ void TestFirstTwoCharInEveryToken(const std::string& text,
iter.NextToken();
}
- EXPECT_EQ(expects, JoinString(results, ' '));
+ EXPECT_EQ(expects, base::JoinString(results, " "));
TestBeyondTheEnd(&iter);
}
« no previous file with comments | « ui/app_list/search/history.cc ('k') | ui/base/dragdrop/os_exchange_data_provider_aurax11.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698