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

Side by Side Diff: runtime/bin/vmservice/client/lib/src/elements/eval_box.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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <head> 1 <head>
2 <link rel="import" href="instance_ref.html"> 2 <link rel="import" href="instance_ref.html">
3 <link rel="import" href="observatory_element.html"> 3 <link rel="import" href="observatory_element.html">
4 </head> 4 </head>
5 <polymer-element name="eval-box" extends="observatory-element"> 5 <polymer-element name="eval-box" extends="observatory-element">
6 <template> 6 <template>
7 <style> 7 <style>
8 .textbox { 8 .textbox {
9 width: 80ex; 9 width: 80ex;
10 font: 400 16px 'Montserrat', sans-serif; 10 font: 400 16px 'Montserrat', sans-serif;
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 <tr template repeat="{{ result in results }}"> 67 <tr template repeat="{{ result in results }}">
68 <td class="historyExpr"> 68 <td class="historyExpr">
69 <a class="expr" on-click="{{ selectExpr }}" 69 <a class="expr" on-click="{{ selectExpr }}"
70 expr="{{ result['expr'] }}">{{ result['expr'] }}</a> 70 expr="{{ result['expr'] }}">{{ result['expr'] }}</a>
71 </td> 71 </td>
72 <td class="historyValue"> 72 <td class="historyValue">
73 <template if="{{ result['value'] == null }}"> 73 <template if="{{ result['value'] == null }}">
74 <div style="color:#aaa;cursor:wait;">&lt;pending&gt;</div> 74 <div style="color:#aaa;cursor:wait;">&lt;pending&gt;</div>
75 </template> 75 </template>
76 <template if="{{ result['value'] != null }}"> 76 <template if="{{ result['value'] != null }}">
77 <instance-ref isolate="{{ isolate }}" 77 <instance-ref ref="{{ result['value'] }}"></instance-ref>
78 ref="{{ result['value'] }}">
79 </instance-ref>
80 </template> 78 </template>
81 </td> 79 </td>
82 </tr> 80 </tr>
83 </table> 81 </table>
84 </template> 82 </template>
85 </template> 83 </template>
86 </polymer-element> 84 </polymer-element>
87 85
88 <script type="application/dart" src="eval_box.dart"></script> 86 <script type="application/dart" src="eval_box.dart"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698