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

Unified Diff: runtime/bin/vmservice/client/deployed/web/index_devtools.html

Issue 204983008: Rework how ServiceObjects are created and cached in Observatory. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: gen js / fix 1 bug 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/index_devtools.html
diff --git a/runtime/bin/vmservice/client/deployed/web/index_devtools.html b/runtime/bin/vmservice/client/deployed/web/index_devtools.html
index 18269a62374702f0fb3ab22a865e9dbd5d62fa67..4fa9c30a9792d079e1de6c1cf94fc24fa3fd669a 100644
--- a/runtime/bin/vmservice/client/deployed/web/index_devtools.html
+++ b/runtime/bin/vmservice/client/deployed/web/index_devtools.html
@@ -423,8 +423,7 @@
<div style="color:#aaa;cursor:wait;">&lt;pending&gt;</div>
</template>
<template if="{{ result['value'] != null }}">
- <instance-ref isolate="{{ isolate }}" ref="{{ result['value'] }}">
- </instance-ref>
+ <instance-ref ref="{{ result['value'] }}"></instance-ref>
</template>
</td>
</tr>
@@ -528,7 +527,7 @@
<div class="memberItem">&nbsp;</div>
- <template if="{{ cls['super']['type'] != 'Null' }}">
+ <template if="{{ cls['super'] != null }}">
<div class="memberItem">
<div class="memberName">extends</div>
<div class="memberValue">
@@ -1831,7 +1830,7 @@
<br>
<ul class="list-group">
- <template repeat="{{ isolate in vm.allIsolates }}">
+ <template repeat="{{ isolate in vm.isolates }}">
<li class="list-group-item">
<isolate-summary isolate="{{ isolate }}"></isolate-summary>
</li>

Powered by Google App Engine
This is Rietveld 408576698