summaryrefslogtreecommitdiffstats
path: root/chrome/browser/views
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/views')
-rw-r--r--chrome/browser/views/about_ipc_dialog.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/views/about_ipc_dialog.cc b/chrome/browser/views/about_ipc_dialog.cc
index cb21069..f616855 100644
--- a/chrome/browser/views/about_ipc_dialog.cc
+++ b/chrome/browser/views/about_ipc_dialog.cc
@@ -402,7 +402,8 @@ void AboutIPCDialog::Log(const IPC::LogData& data) {
int index = message_list_.InsertItem(count, sent_str.c_str());
message_list_.SetItemText(index, kTimeColumn, sent_str.c_str());
- message_list_.SetItemText(index, kChannelColumn, data.channel.c_str());
+ message_list_.SetItemText(index, kChannelColumn,
+ ASCIIToWide(data.channel).c_str());
std::wstring message_name;
IPC::Logging::GetMessageText(data.type, &message_name, NULL, NULL);