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

Unified Diff: runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/isolate_summary.html

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/bin/vmservice/client/deployed/web/packages/observatory/src/elements/isolate_summary.html
diff --git a/runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/isolate_summary.html b/runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/isolate_summary.html
index ca89f0071ba62295ec6ab12314d939ad3454643f..8242355a5903790f131384cba1db32e50ba697b2 100644
--- a/runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/isolate_summary.html
+++ b/runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/isolate_summary.html
@@ -14,9 +14,7 @@
<div class="col-md-1">{{ isolate.mainPort }}</div>
- <!-- TODO(turnidge): Use function-ref when it can take isolate param -->
<div class="col-md-4">
-
<div class="row">
<isolate-ref ref="{{ isolate }}"></isolate-ref>
</div>
@@ -31,33 +29,6 @@
</div>
<div class="col-md-2">
- <div class="row">
- <div class="col-md-5">{{ isolate.timers['total'] | formatTimePrecise }}</div>
- <div class="col-md-1"></div>
- <div class="col-md-3"><p class="text-muted">total</p></div>
- </div>
- <div class="row">
- <div class="col-md-5">{{ isolate.timers['dart'] | formatTimePrecise }}</div>
- <div class="col-md-1"></div>
- <div class="col-md-3"><p class="text-muted">dart</p></div>
- </div>
- <div class="row">
- <div class="col-md-5">{{ isolate.timers['compile'] | formatTimePrecise }}</div>
- <div class="col-md-1"></div>
- <div class="col-md-3"><p class="text-muted">compile</p></div>
- </div>
- <div class="row">
- <div class="col-md-5">{{ isolate.timers['gc'] | formatTimePrecise }}</div>
- <div class="col-md-1"></div>
- <div class="col-md-3"><p class="text-muted">gc</p></div>
- </div>
- <div class="row">
- <div class="col-md-5">{{ isolate.timers['init'] | formatTimePrecise }}</div>
- <div class="col-md-1"></div>
- <div class="col-md-3"><p class="text-muted">init</p></div>
- </div>
- </div>
- <div class="col-md-2">
<a href="{{ isolate.relativeHashLink('allocationprofile') }}">
{{ isolate.newHeapUsed | formatSize }}/{{ isolate.oldHeapUsed | formatSize }}
</a>
@@ -73,6 +44,13 @@
( <a href="{{ isolate.relativeHashLink('stacktrace') }}">stack trace</a> )
</div>
</div>
+
+ <div class="content">
+ <template repeat="{{ key in isolate.counters.keys }}">
+ <div class="memberValue">{{ key }} ({{ isolate.counters[key] }})</div>
+ </template>
+ </div>
+
<template if="{{ isolate.topFrame != null }}">
<script-inset script="{{ isolate.topFrame['script'] }}"
pos="{{ isolate.topFrame['tokenPos'] }}">

Powered by Google App Engine
This is Rietveld 408576698