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

Unified Diff: runtime/vm/service_event.cc

Issue 1293383011: Add an IsolateRunnable event to the service protocol. Improve service docs. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 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/service_event.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/service_event.cc
diff --git a/runtime/vm/service_event.cc b/runtime/vm/service_event.cc
index ce1e7fb04905a4ee12dc7a551482ee1e9e1e6100..9c9868a933e6e5b484e1711fa3d29fbaea05daac 100644
--- a/runtime/vm/service_event.cc
+++ b/runtime/vm/service_event.cc
@@ -62,6 +62,8 @@ const char* ServiceEvent::KindAsCString() const {
switch (kind()) {
case kIsolateStart:
return "IsolateStart";
+ case kIsolateRunnable:
+ return "IsolateRunnable";
case kIsolateExit:
return "IsolateExit";
case kIsolateUpdate:
@@ -106,6 +108,7 @@ const char* ServiceEvent::KindAsCString() const {
const char* ServiceEvent::stream_id() const {
switch (kind()) {
case kIsolateStart:
+ case kIsolateRunnable:
case kIsolateExit:
case kIsolateUpdate:
return Service::isolate_stream.id();
« no previous file with comments | « runtime/vm/service_event.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698