Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(778)

Unified Diff: runtime/vm/timeline_linux.cc

Issue 2985253002: [corelib] dart:developer timeline flow events (Closed)
Patch Set: Update changelog Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/timeline_fuchsia.cc ('k') | runtime/vm/timeline_macos.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/timeline_linux.cc
diff --git a/runtime/vm/timeline_linux.cc b/runtime/vm/timeline_linux.cc
index 8525033799d0f9d3d20924075a29c1d31c278854..bf583229b2ab708e0a605629c382b0a9c25a5ae5 100644
--- a/runtime/vm/timeline_linux.cc
+++ b/runtime/vm/timeline_linux.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,
« no previous file with comments | « runtime/vm/timeline_fuchsia.cc ('k') | runtime/vm/timeline_macos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698