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

Unified Diff: chrome/browser/ui/extensions/application_launch.cc

Issue 112913004: 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/extensions/application_launch.cc
diff --git a/chrome/browser/ui/extensions/application_launch.cc b/chrome/browser/ui/extensions/application_launch.cc
index 65854411e520f4e0804a42ef21283cefac9f52d3..54617d32da1b20410f89e04fe435ce4302c17984 100644
--- a/chrome/browser/ui/extensions/application_launch.cc
+++ b/chrome/browser/ui/extensions/application_launch.cc
@@ -357,8 +357,9 @@ WebContents* OpenEnabledApplication(const AppLaunchParams& params) {
// Only enforce signin if the field trial is set.
if (!field_trial_value.empty()) {
- GURL gurl(l10n_util::GetStringFUTF8(IDS_APP_LAUNCH_NOT_SIGNED_IN_LINK,
- UTF8ToUTF16(extension->id())));
+ GURL gurl(l10n_util::GetStringFUTF8(
+ IDS_APP_LAUNCH_NOT_SIGNED_IN_LINK,
+ base::UTF8ToUTF16(extension->id())));
chrome::NavigateParams navigate_params(profile, gurl,
content::PAGE_TRANSITION_LINK);
navigate_params.host_desktop_type = params.desktop_type;

Powered by Google App Engine
This is Rietveld 408576698