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

Unified Diff: chrome/browser/ui/app_list/search/mixer_unittest.cc

Issue 120983002: Update some uses of UTF conversions in chrome/browser 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: chrome/browser/ui/app_list/search/mixer_unittest.cc
diff --git a/chrome/browser/ui/app_list/search/mixer_unittest.cc b/chrome/browser/ui/app_list/search/mixer_unittest.cc
index 98fa0496bfa74106ed8f85fd079d7752e4ef6fc9..036dcfa75cfd657cd560a0ae9e26d17e201cce64 100644
--- a/chrome/browser/ui/app_list/search/mixer_unittest.cc
+++ b/chrome/browser/ui/app_list/search/mixer_unittest.cc
@@ -22,7 +22,7 @@ class TestSearchResult : public ChromeSearchResult {
public:
TestSearchResult(const std::string& id, double relevance) {
set_id(id);
- set_title(UTF8ToUTF16(id));
+ set_title(base::UTF8ToUTF16(id));
set_relevance(relevance);
}
virtual ~TestSearchResult() {}
@@ -111,7 +111,7 @@ class MixerTest : public testing::Test {
if (!result.empty())
result += ',';
- result += UTF16ToUTF8(results_->GetItemAt(i)->title());
+ result += base::UTF16ToUTF8(results_->GetItemAt(i)->title());
}
return result;
« no previous file with comments | « chrome/browser/ui/app_list/search/history.cc ('k') | chrome/browser/ui/app_list/search/people/people_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698