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

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

Issue 221263002: Miscellaneous Observatory UI improvements (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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 <head> 1 <head>
2 <link rel="import" href="curly_block.html"> 2 <link rel="import" href="curly_block.html">
3 <link rel="import" href="eval_box.html"> 3 <link rel="import" href="eval_box.html">
4 <link rel="import" href="function_ref.html"> 4 <link rel="import" href="function_ref.html">
5 <link rel="import" href="library_ref.html"> 5 <link rel="import" href="library_ref.html">
6 <link rel="import" href="nav_bar.html"> 6 <link rel="import" href="nav_bar.html">
7 <link rel="import" href="observatory_element.html"> 7 <link rel="import" href="observatory_element.html">
8 <link rel="import" href="script_inset.html"> 8 <link rel="import" href="script_inset.html">
9 <link rel="import" href="script_ref.html"> 9 <link rel="import" href="script_ref.html">
10 </head> 10 </head>
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 <div class="memberItem"> 195 <div class="memberItem">
196 <div class="memberValue"> 196 <div class="memberValue">
197 See <a href="{{ isolate.relativeHashLink('heapmap') }}">heap map</a> 197 See <a href="{{ isolate.relativeHashLink('heapmap') }}">heap map</a>
198 </div> 198 </div>
199 </div> 199 </div>
200 </div> 200 </div>
201 </div> 201 </div>
202 202
203 <hr> 203 <hr>
204 204
205 <div class="row">
206 <div class="col-md-2"></div>
207 <div class="col-md-8">
turnidge 2014/04/01 19:42:48 Ditto bootstrap usage.
Cutch 2014/04/02 18:26:52 Done.
208 <small>
209 <template repeat="{{ key in isolate.counters.keys }}">
210 <span>{{ key }} ({{ isolate.counters[key] }})</span>
211 </template>
212 </small>
213 </div>
214 </div>
215
205 <div class="content"> 216 <div class="content">
206 <div id="tagProfileChart" class="col-md-8" style="height: 400px"></div> 217 <div id="tagProfileChart" class="col-md-8" style="height: 400px"></div>
207 </div> 218 </div>
208 219
209 <hr> 220 <hr>
210 221
211 <div class="content"> 222 <div class="content">
212 <eval-box callback="{{ eval }}"></eval-box> 223 <eval-box callback="{{ eval }}"></eval-box>
213 </div> 224 </div>
214 <br><br><br><br> 225 <br><br><br><br>
215 <br><br><br><br> 226 <br><br><br><br>
216 </template> 227 </template>
217 <script type="application/dart" src="isolate_view.dart"></script> 228 <script type="application/dart" src="isolate_view.dart"></script>
218 </polymer-element> 229 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698