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

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

Issue 1124153006: Heap snapshot visualizations (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: sync Created 5 years, 6 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="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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 <div class="memberItem"> 175 <div class="memberItem">
176 <div class="memberValue"> 176 <div class="memberValue">
177 See <a on-click="{{ goto }}" _href="{{ gotoLink('/heap-map', isolate ) }}">heap map</a> 177 See <a on-click="{{ goto }}" _href="{{ gotoLink('/heap-map', isolate ) }}">heap map</a>
178 </div> 178 </div>
179 </div> 179 </div>
180 <div class="memberItem"> 180 <div class="memberItem">
181 <div class="memberValue"> 181 <div class="memberValue">
182 See <a on-click="{{ goto }}" _href="{{ gotoLink('/metrics', isolate) }}">metrics</a> 182 See <a on-click="{{ goto }}" _href="{{ gotoLink('/metrics', isolate) }}">metrics</a>
183 </div> 183 </div>
184 </div> 184 </div>
185 <div class="memberItem">
186 <div class="memberValue">
187 See <a on-click="{{ goto }}" _href="{{ gotoLink('/heap-snapshot', is olate) }}">heap snapshot</a>
188 </div>
189 </div>
185 <!-- Temporarily disabled until UI for dart:io is acceptable. 190 <!-- Temporarily disabled until UI for dart:io is acceptable.
186 <template if="{{ isolate.ioEnabled }}"> 191 <template if="{{ isolate.ioEnabled }}">
187 <div class="memberItem"> 192 <div class="memberItem">
188 <div class="memberValue"> 193 <div class="memberValue">
189 See <a on-click="{{ goto }}" href="{{ gotoLink('/io', isolate) }}" >dart:io</a> 194 See <a on-click="{{ goto }}" href="{{ gotoLink('/io', isolate) }}" >dart:io</a>
190 </div> 195 </div>
191 </div> 196 </div>
192 </template> 197 </template>
193 --> 198 -->
194 </div> 199 </div>
195 <div class="flex-item-10-percent"> 200 <div class="flex-item-10-percent">
196 </div> 201 </div>
197 </div> 202 </div>
198 </template> 203 </template>
199 </polymer-element> 204 </polymer-element>
200 205
201 <polymer-element name="isolate-counter-chart" extends="observatory-element"> 206 <polymer-element name="isolate-counter-chart" extends="observatory-element">
202 <template> 207 <template>
203 <div id="counterPieChart" style="height: 200px"></div> 208 <div id="counterPieChart" style="height: 200px"></div>
204 </template> 209 </template>
205 </polymer-element> 210 </polymer-element>
206 211
207 <script type="application/dart" src="isolate_summary.dart"></script> 212 <script type="application/dart" src="isolate_summary.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/heap_snapshot.html ('k') | runtime/observatory/lib/src/elements/service_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698