summaryrefslogtreecommitdiffstats
path: root/base/trace_event
diff options
context:
space:
mode:
authorgab <gab@chromium.org>2015-02-12 08:14:37 -0800
committerCommit bot <commit-bot@chromium.org>2015-02-12 16:15:16 +0000
commit58c1206d7b8cacb0e59e14fcd8b21a41a2b5945d (patch)
tree0d7d4089f27cb98fc2548a28dd30f5260bab8c84 /base/trace_event
parent4c57db324f08a2b8eade7b6496dd55d828923ad4 (diff)
downloadchromium_src-58c1206d7b8cacb0e59e14fcd8b21a41a2b5945d.zip
chromium_src-58c1206d7b8cacb0e59e14fcd8b21a41a2b5945d.tar.gz
chromium_src-58c1206d7b8cacb0e59e14fcd8b21a41a2b5945d.tar.bz2
Revert of Add DeadlineOverrun step to the RendererSchedulerIdlePeriod trace event. (patchset #1 id:1 of https://codereview.chromium.org/908473002/)
Reason for revert: http://crbug.com/456940#c17 Original issue's description: > Add DeadlineOverrun step to the RendererSchedulerIdlePeriod trace event. > > Adds a deadline overrun step to the RendererSchedulerIdlePeriod trace event > to make it obvious when an idle period lasts longer than its deadline. > > Also adds a TRACE_EVENT_ASYNC_STEP_INTO_WITH_TIMESTAMP0 which is required > to add the step at the appropriate time. > > BUG=455713 > > Committed: https://crrev.com/a38b72b5f1ec147bb961e9045ca0c165f428d5e4 > Cr-Commit-Position: refs/heads/master@{#315042} TBR=nduca@chromium.org,skyostil@chromium.org,dsinclair@chromium.org,rmcilroy@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=455713, 456940 Review URL: https://codereview.chromium.org/916223004 Cr-Commit-Position: refs/heads/master@{#315989}
Diffstat (limited to 'base/trace_event')
-rw-r--r--base/trace_event/trace_event.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/base/trace_event/trace_event.h b/base/trace_event/trace_event.h
index 07a2afa..c4fe801 100644
--- a/base/trace_event/trace_event.h
+++ b/base/trace_event/trace_event.h
@@ -596,15 +596,6 @@
category_group, name, id, TRACE_EVENT_FLAG_NONE, "step", step, \
arg1_name, arg1_val)
-// Similar to TRACE_EVENT_ASYNC_STEP_INTOx but with a custom |at| timestamp
-// provided.
-#define TRACE_EVENT_ASYNC_STEP_INTO_WITH_TIMESTAMP0(category_group, name, \
- id, step, timestamp) \
- INTERNAL_TRACE_EVENT_ADD_WITH_ID_TID_AND_TIMESTAMP( \
- TRACE_EVENT_PHASE_ASYNC_STEP_INTO, category_group, name, id, \
- static_cast<int>(base::PlatformThread::CurrentId()), \
- timestamp, TRACE_EVENT_FLAG_NONE, "step", step)
-
// Records a single ASYNC_STEP_PAST event for |step| immediately. If the
// category is not enabled, then this does nothing. The |name| and |id| must
// match the ASYNC_BEGIN event above. The |step| param identifies this step