diff options
author | yuhaoz <yuhaoz@google.com> | 2015-07-08 14:24:18 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-07-08 21:24:45 +0000 |
commit | 4501a41b185aea6e474a8d746f2055f18a644000 (patch) | |
tree | e89fc09ae136375140716adf8d3714aeb188686f /ipc | |
parent | 3f946d61eab7943c9433c7bb0b78fc798afd7c37 (diff) | |
download | chromium_src-4501a41b185aea6e474a8d746f2055f18a644000.zip chromium_src-4501a41b185aea6e474a8d746f2055f18a644000.tar.gz chromium_src-4501a41b185aea6e474a8d746f2055f18a644000.tar.bz2 |
Adjust the binding point of IPC flow events from the next slice to the enclosing scope.
Review URL: https://codereview.chromium.org/1197963004
Cr-Commit-Position: refs/heads/master@{#337908}
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/ipc_message.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ipc/ipc_message.h b/ipc/ipc_message.h index 2d1e2ac..74bd741 100644 --- a/ipc/ipc_message.h +++ b/ipc/ipc_message.h @@ -207,8 +207,8 @@ class IPC_EXPORT Message : public base::Pickle { } // Called to trace when message is received. void TraceMessageEnd() { - TRACE_EVENT_FLOW_END0(TRACE_DISABLED_BY_DEFAULT("ipc.flow"), "IPC", - header()->flags); + TRACE_EVENT_FLOW_END_BIND_TO_ENCLOSING0( + TRACE_DISABLED_BY_DEFAULT("ipc.flow"), "IPC", header()->flags); } protected: |