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

Side by Side Diff: runtime/observatory/lib/src/elements/isolate_summary.html

Issue 1719313002: Add persistent handles to service protocol and Observatory UI (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 10 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
OLDNEW
1 <link rel="import" href="../../../../packages/polymer/polymer.html"> 1 <link rel="import" href="../../../../packages/polymer/polymer.html">
2 <link rel="import" href="action_link.html"> 2 <link rel="import" href="action_link.html">
3 <link rel="import" href="function_ref.html"> 3 <link rel="import" href="function_ref.html">
4 <link rel="import" href="isolate_ref.html"> 4 <link rel="import" href="isolate_ref.html">
5 <link rel="import" href="observatory_element.html"> 5 <link rel="import" href="observatory_element.html">
6 <link rel="import" href="script_inset.html"> 6 <link rel="import" href="script_inset.html">
7 <link rel="import" href="script_ref.html"> 7 <link rel="import" href="script_ref.html">
8 <polymer-element name="isolate-summary" extends="observatory-element"> 8 <polymer-element name="isolate-summary" extends="observatory-element">
9 <template> 9 <template>
10 <link rel="stylesheet" href="css/shared.css"> 10 <link rel="stylesheet" href="css/shared.css">
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 See <a on-click="{{ goto }}" _href="{{ gotoLink('/metrics', isolate) }}">metrics</a> 161 See <a on-click="{{ goto }}" _href="{{ gotoLink('/metrics', isolate) }}">metrics</a>
162 </div> 162 </div>
163 </div> 163 </div>
164 <div class="memberItem"> 164 <div class="memberItem">
165 <div class="memberValue"> 165 <div class="memberValue">
166 See <a on-click="{{ goto }}" _href="{{ gotoLink('/heap-snapshot', is olate) }}">heap snapshot</a> 166 See <a on-click="{{ goto }}" _href="{{ gotoLink('/heap-snapshot', is olate) }}">heap snapshot</a>
167 </div> 167 </div>
168 </div> 168 </div>
169 <div class="memberItem"> 169 <div class="memberItem">
170 <div class="memberValue"> 170 <div class="memberValue">
171 See <a on-click="{{ goto }}" _href="{{ gotoLink('/persistent-handles ', isolate) }}">persistent handles</a>
172 </div>
173 </div>
174 <div class="memberItem">
175 <div class="memberValue">
171 See <a on-click="{{ goto }}" _href="{{ gotoLink('/ports', isolate) } }">ports</a> 176 See <a on-click="{{ goto }}" _href="{{ gotoLink('/ports', isolate) } }">ports</a>
172 </div> 177 </div>
173 </div> 178 </div>
174 <div class="memberItem"> 179 <div class="memberItem">
175 <div class="memberValue"> 180 <div class="memberValue">
176 See <a on-click="{{ goto }}" _href="{{ gotoLink('/logging', isolate) }}">logging</a> 181 See <a on-click="{{ goto }}" _href="{{ gotoLink('/logging', isolate) }}">logging</a>
177 </div> 182 </div>
178 </div> 183 </div>
179 <!-- Temporarily disabled until UI for dart:io is acceptable. 184 <!-- Temporarily disabled until UI for dart:io is acceptable.
180 <template if="{{ isolate.ioEnabled }}"> 185 <template if="{{ isolate.ioEnabled }}">
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 <div class="chart-wrapper" id="isolate-counter-chart"> 218 <div class="chart-wrapper" id="isolate-counter-chart">
214 <div class="chart-host-wrapper"> 219 <div class="chart-host-wrapper">
215 <div class="chart-host" id="isolate-counter-chart-host"></div> 220 <div class="chart-host" id="isolate-counter-chart-host"></div>
216 <div class="chart-legend-host" id="isolate-counter-chart-legend-host"></ div> 221 <div class="chart-legend-host" id="isolate-counter-chart-legend-host"></ div>
217 </div> 222 </div>
218 </div> 223 </div>
219 </template> 224 </template>
220 </polymer-element> 225 </polymer-element>
221 226
222 <script type="application/dart" src="isolate_summary.dart"></script> 227 <script type="application/dart" src="isolate_summary.dart"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698