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

Unified Diff: runtime/bin/vmservice/client/deployed/web/index.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
« no previous file with comments | « no previous file | runtime/bin/vmservice/client/deployed/web/index.html_bootstrap.dart.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/vmservice/client/deployed/web/index.html
diff --git a/runtime/bin/vmservice/client/deployed/web/index.html b/runtime/bin/vmservice/client/deployed/web/index.html
index f024c58fef53f82bc55967469ba6ce837ad417ae..8cc1d2de3d8a26c196db49f112174b596e9efdd7 100644
--- a/runtime/bin/vmservice/client/deployed/web/index.html
+++ b/runtime/bin/vmservice/client/deployed/web/index.html
@@ -424,8 +424,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>
@@ -529,7 +528,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">
@@ -1832,7 +1831,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>
« no previous file with comments | « no previous file | runtime/bin/vmservice/client/deployed/web/index.html_bootstrap.dart.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698