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

Unified Diff: runtime/vm/service_event.cc

Issue 1756393002: Fix some service protocol isolate lifecycle races (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
« 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 2e64c66a7dd2185daaad046daa77de20a2da4883..a172691ad1e689c4113028d45e160b0bc547eab0 100644
--- a/runtime/vm/service_event.cc
+++ b/runtime/vm/service_event.cc
@@ -115,6 +115,8 @@ const char* ServiceEvent::KindAsCString() const {
return "PauseInterrupted";
case kPauseException:
return "PauseException";
+ case kNone:
+ return "None";
case kResume:
return "Resume";
case kBreakpointAdded:
@@ -161,6 +163,7 @@ const char* ServiceEvent::stream_id() const {
case kPauseBreakpoint:
case kPauseInterrupted:
case kPauseException:
+ case kNone:
case kResume:
case kBreakpointAdded:
case kBreakpointResolved:
« 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