Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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> |
| OLD | NEW |