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

Unified Diff: chrome/browser/ui/app_list/search/search_webstore_result.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/search_webstore_result.cc
diff --git a/chrome/browser/ui/app_list/search/search_webstore_result.cc b/chrome/browser/ui/app_list/search/search_webstore_result.cc
index e544523c0f1fb4e5c94d1faaa0110fc2d4fe7640..e53acf580e960c018ee11f2db0c7c0139c4c05c4 100644
--- a/chrome/browser/ui/app_list/search/search_webstore_result.cc
+++ b/chrome/browser/ui/app_list/search/search_webstore_result.cc
@@ -24,7 +24,7 @@ SearchWebstoreResult::SearchWebstoreResult(Profile* profile,
set_id(launch_url_.spec());
set_relevance(0.0);
- set_title(UTF8ToUTF16(query));
+ set_title(base::UTF8ToUTF16(query));
const base::string16 details =
l10n_util::GetStringUTF16(IDS_EXTENSION_WEB_STORE_TITLE);

Powered by Google App Engine
This is Rietveld 408576698