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

Unified Diff: chrome/browser/ui/views/about_ipc_dialog.cc

Issue 12315071: Revert 184352 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 10 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
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);
}

Powered by Google App Engine
This is Rietveld 408576698