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

Unified Diff: runtime/vm/service.cc

Issue 1765563002: Stream blocks of timeline events over the service protocol (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 10 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
Index: runtime/vm/service.cc
diff --git a/runtime/vm/service.cc b/runtime/vm/service.cc
index 4fbb0c523408c37143c991d33b293f046a9ce556..7e3f64232111dac57106f12529d58a51ee1f94d4 100644
--- a/runtime/vm/service.cc
+++ b/runtime/vm/service.cc
@@ -122,6 +122,7 @@ StreamInfo Service::echo_stream("_Echo");
StreamInfo Service::graph_stream("_Graph");
StreamInfo Service::logging_stream("_Logging");
StreamInfo Service::extension_stream("Extension");
+StreamInfo Service::timeline_stream("Timeline");
static StreamInfo* streams_[] = {
&Service::vm_stream,
@@ -132,6 +133,7 @@ static StreamInfo* streams_[] = {
&Service::graph_stream,
&Service::logging_stream,
&Service::extension_stream,
+ &Service::timeline_stream,
};

Powered by Google App Engine
This is Rietveld 408576698