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

Side by Side Diff: runtime/vm/service_event.h

Issue 1174313002: Allow setting break-on-exceptions option over the service protocol. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 6 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 unified diff | Download patch
« no previous file with comments | « runtime/vm/service.cc ('k') | runtime/vm/service_event.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #ifndef VM_SERVICE_EVENT_H_ 5 #ifndef VM_SERVICE_EVENT_H_
6 #define VM_SERVICE_EVENT_H_ 6 #define VM_SERVICE_EVENT_H_
7 7
8 #include "vm/debugger.h" 8 #include "vm/debugger.h"
9 9
10 class DebuggerEvent; 10 class DebuggerEvent;
(...skipping 10 matching lines...) Expand all
21 kPauseStart, // --pause-isolates-on-start 21 kPauseStart, // --pause-isolates-on-start
22 kPauseExit, // --pause-isolates-on-exit 22 kPauseExit, // --pause-isolates-on-exit
23 kPauseBreakpoint, 23 kPauseBreakpoint,
24 kPauseInterrupted, 24 kPauseInterrupted,
25 kPauseException, 25 kPauseException,
26 kResume, 26 kResume,
27 kBreakpointAdded, 27 kBreakpointAdded,
28 kBreakpointResolved, 28 kBreakpointResolved,
29 kBreakpointRemoved, 29 kBreakpointRemoved,
30 kInspect, 30 kInspect,
31 kDebuggerSettingsUpdate,
31 32
32 kGC, 33 kGC,
33 34
34 kIllegal, 35 kIllegal,
35 }; 36 };
36 37
37 ServiceEvent(Isolate* isolate, EventType event_type) 38 ServiceEvent(Isolate* isolate, EventType event_type)
38 : isolate_(isolate), 39 : isolate_(isolate),
39 type_(event_type), 40 type_(event_type),
40 breakpoint_(NULL), 41 breakpoint_(NULL),
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 Breakpoint* breakpoint_; 108 Breakpoint* breakpoint_;
108 ActivationFrame* top_frame_; 109 ActivationFrame* top_frame_;
109 const Object* exception_; 110 const Object* exception_;
110 const Object* inspectee_; 111 const Object* inspectee_;
111 const Heap::GCStats* gc_stats_; 112 const Heap::GCStats* gc_stats_;
112 }; 113 };
113 114
114 } // namespace dart 115 } // namespace dart
115 116
116 #endif // VM_SERVICE_EVENT_H_ 117 #endif // VM_SERVICE_EVENT_H_
OLDNEW
« no previous file with comments | « runtime/vm/service.cc ('k') | runtime/vm/service_event.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698