| Index: runtime/vm/timeline_android.cc
|
| diff --git a/runtime/vm/timeline_android.cc b/runtime/vm/timeline_android.cc
|
| index ebd82e9daf266a8af7d358f22b387bbd1bd6e422..bfffc91a4eef0063375adc2d5efa2108fdcb4bf0 100644
|
| --- a/runtime/vm/timeline_android.cc
|
| +++ b/runtime/vm/timeline_android.cc
|
| @@ -145,6 +145,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,
|
|
|