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

Unified Diff: ipc/ipc_message.h

Issue 133313005: Revert of Make flow event traces disabled-by-default, and rename "ipc" and "task" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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
« no previous file with comments | « ipc/ipc_channel_reader.cc ('k') | ipc/ipc_sync_channel.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/ipc_message.h
diff --git a/ipc/ipc_message.h b/ipc/ipc_message.h
index 17cbd2469cc9c53734928b52ce9a013ebc3d0068..42090166b38a9d9af94db565fc419bc0fb3e9949 100644
--- a/ipc/ipc_message.h
+++ b/ipc/ipc_message.h
@@ -217,13 +217,11 @@
// Called to trace when message is sent.
void TraceMessageBegin() {
- TRACE_EVENT_FLOW_BEGIN0(TRACE_DISABLED_BY_DEFAULT("toplevel.flow"), "IPC",
- header()->flags);
+ TRACE_EVENT_FLOW_BEGIN0("ipc", "IPC", header()->flags);
}
// Called to trace when message is received.
void TraceMessageEnd() {
- TRACE_EVENT_FLOW_END0(TRACE_DISABLED_BY_DEFAULT("toplevel.flow"), "IPC",
- header()->flags);
+ TRACE_EVENT_FLOW_END0("ipc", "IPC", header()->flags);
}
protected:
« no previous file with comments | « ipc/ipc_channel_reader.cc ('k') | ipc/ipc_sync_channel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698