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

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

Issue 1013563002: CPU profile displayed in three tables with a tree (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 8 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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 See <a on-click="{{ goto }}" _href="{{ gotoLink('/class-tree', isola te) }}">class hierarchy</a> 157 See <a on-click="{{ goto }}" _href="{{ gotoLink('/class-tree', isola te) }}">class hierarchy</a>
158 </div> 158 </div>
159 </div> 159 </div>
160 <div class="memberItem"> 160 <div class="memberItem">
161 <div class="memberValue"> 161 <div class="memberValue">
162 See <a on-click="{{ goto }}" _href="{{ gotoLink('/profiler', isolate ) }}">cpu profile</a> 162 See <a on-click="{{ goto }}" _href="{{ gotoLink('/profiler', isolate ) }}">cpu profile</a>
163 </div> 163 </div>
164 </div> 164 </div>
165 <div class="memberItem"> 165 <div class="memberItem">
166 <div class="memberValue"> 166 <div class="memberValue">
167 See <a on-click="{{ goto }}" _href="{{ gotoLink('/profiler-table', i solate) }}">cpu profile (table)</a>
168 </div>
169 </div>
170 <div class="memberItem">
171 <div class="memberValue">
167 See <a on-click="{{ goto }}" _href="{{ gotoLink('/allocation-profile r', isolate) }}">allocation profile</a> 172 See <a on-click="{{ goto }}" _href="{{ gotoLink('/allocation-profile r', isolate) }}">allocation profile</a>
168 </div> 173 </div>
169 </div> 174 </div>
170 <div class="memberItem"> 175 <div class="memberItem">
171 <div class="memberValue"> 176 <div class="memberValue">
172 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>
173 </div> 178 </div>
174 </div> 179 </div>
175 <div class="memberItem"> 180 <div class="memberItem">
176 <div class="memberValue"> 181 <div class="memberValue">
(...skipping 16 matching lines...) Expand all
193 </template> 198 </template>
194 </polymer-element> 199 </polymer-element>
195 200
196 <polymer-element name="isolate-counter-chart" extends="observatory-element"> 201 <polymer-element name="isolate-counter-chart" extends="observatory-element">
197 <template> 202 <template>
198 <div id="counterPieChart" style="height: 200px"></div> 203 <div id="counterPieChart" style="height: 200px"></div>
199 </template> 204 </template>
200 </polymer-element> 205 </polymer-element>
201 206
202 <script type="application/dart" src="isolate_summary.dart"></script> 207 <script type="application/dart" src="isolate_summary.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/io_view.html ('k') | runtime/observatory/lib/src/elements/isolate_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698