Adds missing and removes duplicate tracing macros.
This fixes the missing tracing nested instant call without any arguments and removes the duplicate of the one with 2 arguments. This is a follow up on https://crrev.com/2326483004 BUG=645308 GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2321283002 NOPRESUBMIT=true CQ_EXCLUDE_TRYBOTS=client.skia.fyi:skia_presubmit-Trybot Review-Url: https://codereview.chromium.org/2321283002
This commit is contained in:
parent
95315f0d6f
commit
4a56318d4c
@ -745,16 +745,17 @@
|
|||||||
TRACE_EVENT_FLAG_NONE, arg1_name, arg1_val, arg2_name, arg2_val)
|
TRACE_EVENT_FLAG_NONE, arg1_name, arg1_val, arg2_name, arg2_val)
|
||||||
|
|
||||||
// Records a single NESTABLE_ASYNC_INSTANT event called "name" immediately,
|
// Records a single NESTABLE_ASYNC_INSTANT event called "name" immediately,
|
||||||
// with one associated argument. If the category is not enabled, then this
|
// with none, one or two associated argument. If the category is not enabled,
|
||||||
// does nothing.
|
// then this does nothing.
|
||||||
|
#define TRACE_EVENT_NESTABLE_ASYNC_INSTANT0(category_group, name, id) \
|
||||||
|
INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_NESTABLE_ASYNC_INSTANT, \
|
||||||
|
category_group, name, id, \
|
||||||
|
TRACE_EVENT_FLAG_NONE)
|
||||||
#define TRACE_EVENT_NESTABLE_ASYNC_INSTANT1(category_group, name, id, \
|
#define TRACE_EVENT_NESTABLE_ASYNC_INSTANT1(category_group, name, id, \
|
||||||
arg1_name, arg1_val) \
|
arg1_name, arg1_val) \
|
||||||
INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_NESTABLE_ASYNC_INSTANT, \
|
INTERNAL_TRACE_EVENT_ADD_WITH_ID(TRACE_EVENT_PHASE_NESTABLE_ASYNC_INSTANT, \
|
||||||
category_group, name, id, \
|
category_group, name, id, \
|
||||||
TRACE_EVENT_FLAG_NONE, arg1_name, arg1_val)
|
TRACE_EVENT_FLAG_NONE, arg1_name, arg1_val)
|
||||||
// Records a single NESTABLE_ASYNC_INSTANT event called "name" immediately,
|
|
||||||
// with 2 associated arguments. If the category is not enabled, then this
|
|
||||||
// does nothing.
|
|
||||||
#define TRACE_EVENT_NESTABLE_ASYNC_INSTANT2( \
|
#define TRACE_EVENT_NESTABLE_ASYNC_INSTANT2( \
|
||||||
category_group, name, id, arg1_name, arg1_val, arg2_name, arg2_val) \
|
category_group, name, id, arg1_name, arg1_val, arg2_name, arg2_val) \
|
||||||
INTERNAL_TRACE_EVENT_ADD_WITH_ID( \
|
INTERNAL_TRACE_EVENT_ADD_WITH_ID( \
|
||||||
|
Loading…
Reference in New Issue
Block a user