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

Unified Diff: runtime/vm/thread.cc

Issue 2728743003: Temporarily disabling JSON generation for Zone statistics to resolve flakiness in tests until a bet… (Closed)
Patch Set: Removed code that was commented out in previous patch Created 3 years, 10 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/observatory/lib/src/service/object.dart ('k') | runtime/vm/thread_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/thread.cc
diff --git a/runtime/vm/thread.cc b/runtime/vm/thread.cc
index dc54d6a01a2f1247565635c47a29582929588ca4..31ecabe5b28aeaab032185f2bb54c1a75ee6cbef 100644
--- a/runtime/vm/thread.cc
+++ b/runtime/vm/thread.cc
@@ -230,15 +230,6 @@ void Thread::PrintJSON(JSONStream* stream) const {
OSThread::ThreadIdToIntPtr(os_thread()->trace_id()));
jsobj.AddProperty("kind", TaskKindToCString(task_kind()));
jsobj.AddPropertyF("_memoryHighWatermark", "%" Pu "", memory_high_watermark_);
- Zone* zone = zone_;
- {
- JSONArray zone_info_array(&jsobj, "zones");
- zone = zone_;
- while (zone != NULL) {
- zone_info_array.AddValue(zone);
- zone = zone->previous();
- }
- }
}
#endif
« no previous file with comments | « runtime/observatory/lib/src/service/object.dart ('k') | runtime/vm/thread_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698