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

Unified Diff: runtime/vm/json_stream.h

Issue 1145053004: Revert "Per-closure breakpoints; restructure breakpoint implementation to keep a list of conditions… (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: 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
« no previous file with comments | « runtime/vm/debugger_api_impl.cc ('k') | runtime/vm/json_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/json_stream.h
diff --git a/runtime/vm/json_stream.h b/runtime/vm/json_stream.h
index 7ecbe986a681af6c7d9bea4dae7f7d2340620d16..3c3bc9c1d3b83244f19c7a3f17a577179f7cb4b3 100644
--- a/runtime/vm/json_stream.h
+++ b/runtime/vm/json_stream.h
@@ -22,7 +22,7 @@ class MessageQueue;
class Metric;
class Object;
class ServiceEvent;
-class Breakpoint;
+class SourceBreakpoint;
class String;
class Zone;
@@ -115,7 +115,7 @@ class JSONStream : ValueObject {
void PrintValueNoEscape(const char* s);
void PrintfValue(const char* format, ...) PRINTF_ATTRIBUTE(2, 3);
void PrintValue(const Object& o, bool ref = true);
- void PrintValue(Breakpoint* bpt);
+ void PrintValue(SourceBreakpoint* bpt);
void PrintValue(const ServiceEvent* event);
void PrintValue(Metric* metric);
void PrintValue(MessageQueue* queue);
@@ -135,7 +135,7 @@ class JSONStream : ValueObject {
void PrintProperty(const char* name, const Object& o, bool ref = true);
void PrintProperty(const char* name, const ServiceEvent* event);
- void PrintProperty(const char* name, Breakpoint* bpt);
+ void PrintProperty(const char* name, SourceBreakpoint* bpt);
void PrintProperty(const char* name, Metric* metric);
void PrintProperty(const char* name, MessageQueue* queue);
void PrintProperty(const char* name, Isolate* isolate);
@@ -214,7 +214,7 @@ class JSONObject : public ValueObject {
void AddProperty(const char* name, const ServiceEvent* event) const {
stream_->PrintProperty(name, event);
}
- void AddProperty(const char* name, Breakpoint* bpt) const {
+ void AddProperty(const char* name, SourceBreakpoint* bpt) const {
stream_->PrintProperty(name, bpt);
}
void AddProperty(const char* name, Metric* metric) const {
@@ -265,7 +265,7 @@ class JSONArray : public ValueObject {
void AddValue(Isolate* isolate, bool ref = true) const {
stream_->PrintValue(isolate, ref);
}
- void AddValue(Breakpoint* bpt) const {
+ void AddValue(SourceBreakpoint* bpt) const {
stream_->PrintValue(bpt);
}
void AddValue(const ServiceEvent* event) const {
« no previous file with comments | « runtime/vm/debugger_api_impl.cc ('k') | runtime/vm/json_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698