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

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

Issue 503061: Merge 34957 - Fixes crash when message IDS_EXTENSION_PACK_DIALOG_SUCCESS_BODY... (Closed) Base URL: svn://svn.chromium.org/chrome/branches/249/src/
Patch Set: Created 11 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
« 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/extensions_ui.cc
===================================================================
--- chrome/browser/extensions/extensions_ui.cc (revision 35003)
+++ chrome/browser/extensions/extensions_ui.cc (working copy)
@@ -493,12 +493,12 @@
const FilePath& pem_file) {
std::string message;
if (!pem_file.empty()) {
- message = WideToASCII(l10n_util::GetStringF(
+ message = WideToUTF8(l10n_util::GetStringF(
IDS_EXTENSION_PACK_DIALOG_SUCCESS_BODY_NEW,
crx_file.ToWStringHack(),
pem_file.ToWStringHack()));
} else {
- message = WideToASCII(l10n_util::GetStringF(
+ message = WideToUTF8(l10n_util::GetStringF(
IDS_EXTENSION_PACK_DIALOG_SUCCESS_BODY_UPDATE,
crx_file.ToWStringHack()));
}
« 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