| Index: runtime/vm/json_stream.h
|
| diff --git a/runtime/vm/json_stream.h b/runtime/vm/json_stream.h
|
| index 6f4e85a19bf4a7214eb5b782cc2823cdea333874..6997b4e25a4ba1a928b3e72b2bcbe71b985abab5 100644
|
| --- a/runtime/vm/json_stream.h
|
| +++ b/runtime/vm/json_stream.h
|
| @@ -184,7 +184,6 @@ class JSONStream : ValueObject {
|
| void PrintValue(Isolate* isolate, bool ref = true);
|
| void PrintValue(ThreadRegistry* reg);
|
| void PrintValue(Thread* thread);
|
| - void PrintValue(Zone* zone);
|
| bool PrintValueStr(const String& s, intptr_t offset, intptr_t count);
|
| void PrintValue(const TimelineEvent* timeline_event);
|
| void PrintValue(const TimelineEventBlock* timeline_event_block);
|
| @@ -404,7 +403,6 @@ class JSONArray : public ValueObject {
|
| }
|
| void AddValue(ThreadRegistry* reg) const { stream_->PrintValue(reg); }
|
| void AddValue(Thread* thread) const { stream_->PrintValue(thread); }
|
| - void AddValue(Zone* zone) const { stream_->PrintValue(zone); }
|
| void AddValue(Breakpoint* bpt) const { stream_->PrintValue(bpt); }
|
| void AddValue(TokenPosition tp) const { stream_->PrintValue(tp); }
|
| void AddValue(const ServiceEvent* event) const { stream_->PrintValue(event); }
|
|
|