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

Side by Side Diff: runtime/bin/vmservice/observatory/lib/src/elements/instance_ref.html

Issue 532063002: Teach the Observatory about Contexts. Factor out object graph information from the instance view. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <link rel="import" href="../../../../packages/polymer/polymer.html"> 1 <link rel="import" href="../../../../packages/polymer/polymer.html">
2 <link rel="import" href="curly_block.html"> 2 <link rel="import" href="curly_block.html">
3 <link rel="import" href="observatory_element.html"> 3 <link rel="import" href="observatory_element.html">
4 <link rel="import" href="service_ref.html"> 4 <link rel="import" href="service_ref.html">
5 5
6 <polymer-element name="instance-ref" extends="service-ref"> 6 <polymer-element name="instance-ref" extends="service-ref">
7 <template> 7 <template>
8 <link rel="stylesheet" href="css/shared.css"> 8 <link rel="stylesheet" href="css/shared.css">
9 <style> 9 <style>
10 .errorBox { 10 .errorBox {
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 </template> 56 </template>
57 57
58 <template if="{{ ref.isList }}"> 58 <template if="{{ ref.isList }}">
59 <a on-click="{{ goto }}" _href="{{ url }}"><em>{{ ref.clazz.name }}</em> ({{ ref.length }})</a> 59 <a on-click="{{ goto }}" _href="{{ url }}"><em>{{ ref.clazz.name }}</em> ({{ ref.length }})</a>
60 <curly-block callback="{{ expander() }}"> 60 <curly-block callback="{{ expander() }}">
61 <div class="memberList"> 61 <div class="memberList">
62 <template repeat="{{ element in ref.elements }}"> 62 <template repeat="{{ element in ref.elements }}">
63 <div class="memberItem"> 63 <div class="memberItem">
64 <div class="memberName">[{{ element['index']}}]</div> 64 <div class="memberName">[{{ element['index']}}]</div>
65 <div class="memberValue"> 65 <div class="memberValue">
66 <any-service-ref ref="{{ element['value'] }}"></instance-ref> 66 <any-service-ref ref="{{ element['value'] }}"></any-service-re f>
67 </div> 67 </div>
68 </div> 68 </div>
69 </template> 69 </template>
70 </div> 70 </div>
71 </curly-block> 71 </curly-block>
72 </template> 72 </template>
73 </span> 73 </span>
74 </template> 74 </template>
75 </polymer-element> 75 </polymer-element>
76 76
77 <script type="application/dart" src="instance_ref.dart"></script> 77 <script type="application/dart" src="instance_ref.dart"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698