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

Unified Diff: runtime/vm/timeline_win.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_macos.cc ('k') | sdk/lib/developer/timeline.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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,
« no previous file with comments | « runtime/vm/timeline_macos.cc ('k') | sdk/lib/developer/timeline.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698