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

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

Issue 184233007: Refactor Observatory (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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <head> 1 <head>
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 </head> 5 </head>
6 <polymer-element name="instance-ref" extends="service-ref"> 6 <polymer-element name="instance-ref" extends="service-ref">
7 <template> 7 <template>
8 <style> 8 <style>
9 .member { 9 .member {
10 vertical-align: top; 10 vertical-align: top;
(...skipping 21 matching lines...) Expand all
32 </a> 32 </a>
33 </template> 33 </template>
34 34
35 <template if="{{ isInstanceRef(ref['type']) }}"> 35 <template if="{{ isInstanceRef(ref['type']) }}">
36 <a href="{{ url }}"><em>{{ ref['class']['user_name'] }}</em></a> 36 <a href="{{ url }}"><em>{{ ref['class']['user_name'] }}</em></a>
37 <curly-block callback="{{ expander() }}"> 37 <curly-block callback="{{ expander() }}">
38 <table> 38 <table>
39 <tr template repeat="{{ field in ref['fields'] }}"> 39 <tr template repeat="{{ field in ref['fields'] }}">
40 <td class="member">{{ field['decl']['user_name'] }}</td> 40 <td class="member">{{ field['decl']['user_name'] }}</td>
41 <td class="member"> 41 <td class="member">
42 <instance-ref app="{{ app }}" ref="{{ field['value'] }}"></insta nce-ref> 42 <instance-ref isolate="{{ isolate }}" ref="{{ field['value'] }}" ></instance-ref>
43 </td> 43 </td>
44 </tr> 44 </tr>
45 </table> 45 </table>
46 </curly-block> 46 </curly-block>
47 </template> 47 </template>
48 48
49 <template if="{{ isListRef(ref['type']) }}"> 49 <template if="{{ isListRef(ref['type']) }}">
50 <a href="{{ url }}"><em>{{ ref['class']['user_name'] }}</em> ({{ ref['le ngth']}})</a> 50 <a href="{{ url }}"><em>{{ ref['class']['user_name'] }}</em> ({{ ref['le ngth']}})</a>
51 <curly-block callback="{{ expander() }}"> 51 <curly-block callback="{{ expander() }}">
52 <table> 52 <table>
53 <tr template repeat="{{ element in ref['elements'] }}"> 53 <tr template repeat="{{ element in ref['elements'] }}">
54 <td class="member">[{{ element['index']}}]</td> 54 <td class="member">[{{ element['index']}}]</td>
55 <td class="member"> 55 <td class="member">
56 <instance-ref app="{{ app }}" ref="{{ element['value'] }}"></ins tance-ref> 56 <instance-ref isolate="{{ isolate }}" ref="{{ element['value'] } }"></instance-ref>
57 </td> 57 </td>
58 </tr> 58 </tr>
59 </table> 59 </table>
60 </curly-block> 60 </curly-block>
61 </template> 61 </template>
62 62
63 </div> 63 </div>
64 </template> 64 </template>
65 <script type="application/dart" src="instance_ref.dart"></script> 65 <script type="application/dart" src="instance_ref.dart"></script>
66 </polymer-element> 66 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698