Index: runtime/vm/json_stream.cc |
diff --git a/runtime/vm/json_stream.cc b/runtime/vm/json_stream.cc |
index 06e3d61a6bf244b50165917b33391b967634825b..2ed62efd8c1caf16ed1ab3bfaa4e79f129dc22e6 100644 |
--- a/runtime/vm/json_stream.cc |
+++ b/runtime/vm/json_stream.cc |
@@ -327,7 +327,7 @@ void JSONStream::PrintValue(const Object& o, bool ref) { |
} |
-void JSONStream::PrintValue(Breakpoint* bpt) { |
+void JSONStream::PrintValue(SourceBreakpoint* bpt) { |
PrintCommaIfNeeded(); |
bpt->PrintJSON(this); |
} |
@@ -415,7 +415,7 @@ void JSONStream::PrintProperty(const char* name, const ServiceEvent* event) { |
} |
-void JSONStream::PrintProperty(const char* name, Breakpoint* bpt) { |
+void JSONStream::PrintProperty(const char* name, SourceBreakpoint* bpt) { |
PrintPropertyName(name); |
PrintValue(bpt); |
} |