| Index: base/trace_event/common/trace_event_common.h
|
| diff --git a/base/trace_event/common/trace_event_common.h b/base/trace_event/common/trace_event_common.h
|
| index 87588f5749706befac2ae691cec8a1d0793145d9..38e3c067984ea247b829f74aa1a5e422f2241e6a 100644
|
| --- a/base/trace_event/common/trace_event_common.h
|
| +++ b/base/trace_event/common/trace_event_common.h
|
| @@ -940,9 +940,11 @@
|
| arg1_val, arg2_name, arg2_val)
|
|
|
| // Special trace event macro to trace task execution with the location where it
|
| -// was posted from.
|
| +// was posted from. Optionally adding metadata in an extra parameter.
|
| #define TRACE_TASK_EXECUTION(run_function, task) \
|
| INTERNAL_TRACE_TASK_EXECUTION(run_function, task)
|
| +#define TRACE_TASK_EXECUTION1(run_function, task, arg1_name, arg1_val) \
|
| + INTERNAL_TRACE_TASK_EXECUTION(run_function, task, arg1_name, arg1_val)
|
|
|
| // TRACE_EVENT_METADATA* events are information related to other
|
| // injected events, not events in their own right.
|
|
|