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

Unified Diff: chrome/browser/extensions/extension_error_ui.cc

Issue 10824103: Fix garbled text in extension error bubble. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_error_ui.cc
diff --git a/chrome/browser/extensions/extension_error_ui.cc b/chrome/browser/extensions/extension_error_ui.cc
index 2dc1c25e884e0ea24910b8f5e3eba86dd636c532..072f0c3604b7947db7e32e44b4c0e604081cd567 100644
--- a/chrome/browser/extensions/extension_error_ui.cc
+++ b/chrome/browser/extensions/extension_error_ui.cc
@@ -50,7 +50,7 @@ string16 ExtensionErrorUI::GenerateMessageSection(
const extensions::Extension* e = extension_service_->GetExtensionById(*iter,
true);
message += l10n_util::GetStringFUTF16(template_message_id,
- string16(ASCIIToUTF16(e->name())));
+ UTF8ToUTF16(e->name()));
}
return message;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698