Index: runtime/vm/service_event.h |
diff --git a/runtime/vm/service_event.h b/runtime/vm/service_event.h |
index 0c90d006ffedc087ed985d55e7db6348de861e87..e74ee66f2929dd039c794600aba734073968312f 100644 |
--- a/runtime/vm/service_event.h |
+++ b/runtime/vm/service_event.h |
@@ -50,10 +50,10 @@ class ServiceEvent { |
EventType type() const { return type_; } |
- Breakpoint* breakpoint() const { |
+ SourceBreakpoint* breakpoint() const { |
return breakpoint_; |
} |
- void set_breakpoint(Breakpoint* bpt) { |
+ void set_breakpoint(SourceBreakpoint* bpt) { |
ASSERT(type() == kPauseBreakpoint || |
type() == kBreakpointAdded || |
type() == kBreakpointResolved || |
@@ -103,7 +103,7 @@ class ServiceEvent { |
private: |
Isolate* isolate_; |
EventType type_; |
- Breakpoint* breakpoint_; |
+ SourceBreakpoint* breakpoint_; |
ActivationFrame* top_frame_; |
const Object* exception_; |
const Object* inspectee_; |