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

Unified Diff: runtime/vm/service_event.h

Issue 1166433008: 2nd attempt at adding streamListen/streamCancel to the service protocol. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: cleanups before review Created 5 years, 7 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_event.h
diff --git a/runtime/vm/service_event.h b/runtime/vm/service_event.h
index 0c90d006ffedc087ed985d55e7db6348de861e87..f835498a3ef36928581c9aa3c5608f7bdaee5108 100644
--- a/runtime/vm/service_event.h
+++ b/runtime/vm/service_event.h
@@ -24,13 +24,12 @@ class ServiceEvent {
kPauseInterrupted,
kPauseException,
kResume,
-
kBreakpointAdded,
kBreakpointResolved,
kBreakpointRemoved,
+ kInspect,
kGC,
- kInspect,
kIllegal,
};
@@ -50,6 +49,8 @@ class ServiceEvent {
EventType type() const { return type_; }
+ const char* stream_id() const;
+
Breakpoint* breakpoint() const {
return breakpoint_;
}

Powered by Google App Engine
This is Rietveld 408576698