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

Unified Diff: runtime/vm/isolate.cc

Issue 221263002: Miscellaneous Observatory UI improvements (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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
Index: runtime/vm/isolate.cc
diff --git a/runtime/vm/isolate.cc b/runtime/vm/isolate.cc
index 43674d23ab11ab627f81e93751bafee7681ad6be..d10bef9a2fd899fb83c032212b6206827cc3a69c 100644
--- a/runtime/vm/isolate.cc
+++ b/runtime/vm/isolate.cc
@@ -926,7 +926,10 @@ void Isolate::PrintToJSONStream(JSONStream* stream, bool ref) {
jsobj.AddProperty("rootLib", lib);
timer_list().PrintTimersToJSONProperty(&jsobj);
-
+ {
+ JSONObject tagCounters(&jsobj, "tagCounters");
+ vm_tag_counters()->PrintToJSONObject(&tagCounters);
+ }
if (object_store()->sticky_error() != Object::null()) {
Error& error = Error::Handle(this, object_store()->sticky_error());
ASSERT(!error.IsNull());

Powered by Google App Engine
This is Rietveld 408576698