| Index: runtime/vm/timeline_win.cc
|
| diff --git a/runtime/vm/timeline_win.cc b/runtime/vm/timeline_win.cc
|
| index 11f5e73437471df64508b8b6fdca820a82a958a4..40fea44330aa80c21801e0a4fb9f29b515e0e052 100644
|
| --- a/runtime/vm/timeline_win.cc
|
| +++ b/runtime/vm/timeline_win.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,
|
|
|