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

Side by Side Diff: runtime/bin/vmservice/client/lib/src/elements/isolate_summary.html

Issue 322483005: Final Observatory 1.5 fixes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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 <head> 1 <head>
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 </head> 8 </head>
9 <polymer-element name="isolate-summary" extends="observatory-element"> 9 <polymer-element name="isolate-summary" extends="observatory-element">
10 <template> 10 <template>
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 <div class="memberItem"> 161 <div class="memberItem">
162 <div class="memberValue"> 162 <div class="memberValue">
163 See <a on-click="{{ goto }}" href="{{ gotoLink(isolate.relativeLink( 'allocationprofile')) }}">allocation profile</a> 163 See <a on-click="{{ goto }}" href="{{ gotoLink(isolate.relativeLink( 'allocationprofile')) }}">allocation profile</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(isolate.relativeLink( 'heapmap')) }}">heap map</a> 168 See <a on-click="{{ goto }}" href="{{ gotoLink(isolate.relativeLink( 'heapmap')) }}">heap map</a>
169 </div> 169 </div>
170 </div> 170 </div>
171 <!-- Disable io link until UI is properly implemented.
171 <template if="{{ isolate.ioEnabled }}"> 172 <template if="{{ isolate.ioEnabled }}">
172 <div class="memberItem"> 173 <div class="memberItem">
173 <div class="memberValue"> 174 <div class="memberValue">
174 See <a on-click="{{ goto }}" href="{{ gotoLink(isolate.relativeLin k('io')) }}">dart:io</a> 175 See <a on-click="{{ goto }}" href="{{ gotoLink(isolate.relativeLin k('io')) }}">dart:io</a>
175 </div> 176 </div>
176 </div> 177 </div>
177 </template> 178 </template>
179 -->
178 </div> 180 </div>
179 <div class="flex-item-10-percent"> 181 <div class="flex-item-10-percent">
180 </div> 182 </div>
181 </div> 183 </div>
182 </template> 184 </template>
183 </polymer-element> 185 </polymer-element>
184 186
185 <polymer-element name="isolate-counter-chart" extends="observatory-element"> 187 <polymer-element name="isolate-counter-chart" extends="observatory-element">
186 <template> 188 <template>
187 <div id="counterPieChart" style="height: 200px"></div> 189 <div id="counterPieChart" style="height: 200px"></div>
188 </template> 190 </template>
189 </polymer-element> 191 </polymer-element>
190 192
191 <script type="application/dart" src="isolate_summary.dart"></script> 193 <script type="application/dart" src="isolate_summary.dart"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698