| Index: runtime/vm/timeline_macos.cc
|
| diff --git a/runtime/vm/timeline_macos.cc b/runtime/vm/timeline_macos.cc
|
| index a17b590a4ed01c3d3e5454e415b6b43d860a1130..2a8927fe2d13b1c6ed3005037e56f079cbaf55a0 100644
|
| --- a/runtime/vm/timeline_macos.cc
|
| +++ b/runtime/vm/timeline_macos.cc
|
| @@ -71,6 +71,21 @@ void DartTimelineEventHelpers::ReportCompleteEvent(Thread* thread,
|
| thread, zone, event, start, start_cpu, category, name, args);
|
| }
|
|
|
| +void DartTimelineEventHelpers::ReportFlowEvent(Thread* thread,
|
| + Zone* zone,
|
| + TimelineEvent* event,
|
| + int64_t start,
|
| + int64_t start_cpu,
|
| + const char* category,
|
| + const char* name,
|
| + int64_t type,
|
| + int64_t flow_id,
|
| + const char* args) {
|
| + DartCommonTimelineEventHelpers::ReportFlowEvent(thread, zone, event, start,
|
| + start_cpu, category, name,
|
| + type, flow_id, args);
|
| +}
|
| +
|
| void DartTimelineEventHelpers::ReportInstantEvent(Thread* thread,
|
| Zone* zone,
|
| TimelineEvent* event,
|
|
|