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

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

Issue 345113002: Fix Observatory code coverage (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 <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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 <div class="memberItem"> 160 <div class="memberItem">
161 <div class="memberValue"> 161 <div class="memberValue">
162 See <a on-click="{{ goto }}" href="{{ gotoLink(isolate.relativeLink( 'allocationprofile')) }}">allocation profile</a> 162 See <a on-click="{{ goto }}" href="{{ gotoLink(isolate.relativeLink( 'allocationprofile')) }}">allocation 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(isolate.relativeLink( 'heapmap')) }}">heap map</a> 167 See <a on-click="{{ goto }}" href="{{ gotoLink(isolate.relativeLink( 'heapmap')) }}">heap map</a>
168 </div> 168 </div>
169 </div> 169 </div>
170 <!--
170 <template if="{{ isolate.ioEnabled }}"> 171 <template if="{{ isolate.ioEnabled }}">
171 <div class="memberItem"> 172 <div class="memberItem">
172 <div class="memberValue"> 173 <div class="memberValue">
173 See <a on-click="{{ goto }}" href="{{ gotoLink(isolate.relativeLin k('io')) }}">dart:io</a> 174 See <a on-click="{{ goto }}" href="{{ gotoLink(isolate.relativeLin k('io')) }}">dart:io</a>
174 </div> 175 </div>
175 </div> 176 </div>
176 </template> 177 </template>
178 -->
koda 2014/06/20 15:40:29 Is this temporary? Please explain.
Cutch 2014/06/20 15:41:45 Yes, it is temporary. The UI isn't finished and I
177 </div> 179 </div>
178 <div class="flex-item-10-percent"> 180 <div class="flex-item-10-percent">
179 </div> 181 </div>
180 </div> 182 </div>
181 </template> 183 </template>
182 </polymer-element> 184 </polymer-element>
183 185
184 <polymer-element name="isolate-counter-chart" extends="observatory-element"> 186 <polymer-element name="isolate-counter-chart" extends="observatory-element">
185 <template> 187 <template>
186 <div id="counterPieChart" style="height: 200px"></div> 188 <div id="counterPieChart" style="height: 200px"></div>
187 </template> 189 </template>
188 </polymer-element> 190 </polymer-element>
189 191
190 <script type="application/dart" src="isolate_summary.dart"></script> 192 <script type="application/dart" src="isolate_summary.dart"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698