Index: chrome/browser/ui/views/about_ipc_dialog.cc |
=================================================================== |
--- chrome/browser/ui/views/about_ipc_dialog.cc (revision 184354) |
+++ chrome/browser/ui/views/about_ipc_dialog.cc (working copy) |
@@ -96,7 +96,7 @@ |
(*i->second)(&name, NULL, NULL); |
if (name.empty()) |
continue; // Will happen if the message file isn't included above. |
- std::wstring wname = base::UTF8ToWide(name); |
+ std::wstring wname = UTF8ToWide(name); |
int index = messages->InsertItem( |
LVIF_TEXT | LVIF_PARAM, 0, wname.c_str(), 0, 0, 0, i->first); |
@@ -304,14 +304,14 @@ |
message_list_.SetItemText(index, kTimeColumn, sent_str.c_str()); |
message_list_.SetItemText(index, kChannelColumn, |
- base::ASCIIToWide(data.channel).c_str()); |
+ ASCIIToWide(data.channel).c_str()); |
std::string message_name; |
IPC::Logging::GetMessageText(data.type, &message_name, NULL, NULL); |
message_list_.SetItemText(index, kMessageColumn, |
- base::UTF8ToWide(message_name).c_str()); |
+ UTF8ToWide(message_name).c_str()); |
message_list_.SetItemText(index, kFlagsColumn, |
- base::UTF8ToWide(data.flags).c_str()); |
+ UTF8ToWide(data.flags).c_str()); |
int64 time_to_send = (base::Time::FromInternalValue(data.receive) - |
sent).InMilliseconds(); |
@@ -327,7 +327,7 @@ |
message_list_.SetItemText(index, kProcessColumn, temp.c_str()); |
message_list_.SetItemText(index, kParamsColumn, |
- base::UTF8ToWide(data.params).c_str()); |
+ UTF8ToWide(data.params).c_str()); |
message_list_.EnsureVisible(index, FALSE); |
} |