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

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, 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
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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 See <a on-click="{{ goto }}" _href="{{ gotoLink('/metrics', isolate) }}">metrics</a> 163 See <a on-click="{{ goto }}" _href="{{ gotoLink('/metrics', isolate) }}">metrics</a>
164 </div> 164 </div>
165 </div> 165 </div>
166 <div class="memberItem"> 166 <div class="memberItem">
167 <div class="memberValue"> 167 <div class="memberValue">
168 See <a on-click="{{ goto }}" _href="{{ gotoLink('/heap-snapshot', is olate) }}">heap snapshot</a> 168 See <a on-click="{{ goto }}" _href="{{ gotoLink('/heap-snapshot', is olate) }}">heap snapshot</a>
169 </div> 169 </div>
170 </div> 170 </div>
171 <div class="memberItem"> 171 <div class="memberItem">
172 <div class="memberValue"> 172 <div class="memberValue">
173 See <a on-click="{{ goto }}" _href="{{ gotoLink('/persistent-handles ', isolate) }}">persistent handles</a>
174 </div>
175 </div>
176 <div class="memberItem">
177 <div class="memberValue">
173 See <a on-click="{{ goto }}" _href="{{ gotoLink('/ports', isolate) } }">ports</a> 178 See <a on-click="{{ goto }}" _href="{{ gotoLink('/ports', isolate) } }">ports</a>
174 </div> 179 </div>
175 </div> 180 </div>
176 <div class="memberItem"> 181 <div class="memberItem">
177 <div class="memberValue"> 182 <div class="memberValue">
178 See <a on-click="{{ goto }}" _href="{{ gotoLink('/logging', isolate) }}">logging</a> 183 See <a on-click="{{ goto }}" _href="{{ gotoLink('/logging', isolate) }}">logging</a>
179 </div> 184 </div>
180 </div> 185 </div>
181 <!-- Temporarily disabled until UI for dart:io is acceptable. 186 <!-- Temporarily disabled until UI for dart:io is acceptable.
182 <template if="{{ isolate.ioEnabled }}"> 187 <template if="{{ isolate.ioEnabled }}">
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 <div class="chart-wrapper" id="isolate-counter-chart"> 220 <div class="chart-wrapper" id="isolate-counter-chart">
216 <div class="chart-host-wrapper"> 221 <div class="chart-host-wrapper">
217 <div class="chart-host" id="isolate-counter-chart-host"></div> 222 <div class="chart-host" id="isolate-counter-chart-host"></div>
218 <div class="chart-legend-host" id="isolate-counter-chart-legend-host"></ div> 223 <div class="chart-legend-host" id="isolate-counter-chart-legend-host"></ div>
219 </div> 224 </div>
220 </div> 225 </div>
221 </template> 226 </template>
222 </polymer-element> 227 </polymer-element>
223 228
224 <script type="application/dart" src="isolate_summary.dart"></script> 229 <script type="application/dart" src="isolate_summary.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/app/page.dart ('k') | runtime/observatory/lib/src/elements/nav_bar.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698