| OLD | NEW |
| 1 <head> | 1 <head> |
| 2 <link rel="import" href="function_ref.html"> | 2 <link rel="import" href="function_ref.html"> |
| 3 <link rel="import" href="observatory_element.html"> | 3 <link rel="import" href="observatory_element.html"> |
| 4 <link rel="import" href="script_ref.html"> | 4 <link rel="import" href="script_ref.html"> |
| 5 </head> | 5 </head> |
| 6 <polymer-element name="isolate-summary" extends="observatory-element"> | 6 <polymer-element name="isolate-summary" extends="observatory-element"> |
| 7 <template> | 7 <template> |
| 8 <div class="row"> | 8 <div class="row"> |
| 9 <div class="col-md-1"> | 9 <div class="col-md-1"> |
| 10 <img src="img/isolate_icon.png" class="img-polaroid"> | 10 <img src="img/isolate_icon.png" class="img-polaroid"> |
| 11 </div> | 11 </div> |
| 12 | 12 |
| 13 <div class="col-md-1">{{ isolate.name }}</div> | 13 <div class="col-md-1">{{ isolate.vmName }}</div> |
| 14 | 14 |
| 15 <!-- TODO(turnidge): Use function-ref when it can take isolate param --> | 15 <!-- TODO(turnidge): Use function-ref when it can take isolate param --> |
| 16 <div class="col-md-4"> | 16 <div class="col-md-4"> |
| 17 | 17 |
| 18 <div class="row"> | 18 <div class="row"> |
| 19 <template if="{{ isolate.entry['id'] != null }}"> | 19 <template if="{{ isolate.entry['id'] != null }}"> |
| 20 <a href="{{ app.locationManager.relativeLink(isolate.id, isolate.ent
ry['id']) }}"> | 20 <a href="{{ app.locationManager.relativeLink(isolate.id, isolate.ent
ry['id']) }}"> |
| 21 {{ isolate.entry['name'] }} | 21 {{ isolate.name }} |
| 22 </a> | 22 </a> |
| 23 </template> | 23 </template> |
| 24 <template if="{{ isolate.entry['id'] == null }}"> | 24 <template if="{{ isolate.entry['id'] == null }}"> |
| 25 <!-- fred --> | 25 {{ isolate.name }} |
| 26 root isolate | |
| 27 </template> | 26 </template> |
| 28 </div> | 27 </div> |
| 29 | 28 |
| 30 <div class="row"> | 29 <div class="row"> |
| 31 <small> | 30 <small> |
| 32 (<a href="{{ app.locationManager.relativeLink(isolate.id, isolate.ro
otLib) }}">library</a>) | 31 (<a href="{{ app.locationManager.relativeLink(isolate.id, isolate.ro
otLib) }}">library</a>) |
| 33 (<a href="{{ app.locationManager.relativeLink(isolate.id, 'debug/bre
akpoints') }}">breakpoints</a>) | 32 (<a href="{{ app.locationManager.relativeLink(isolate.id, 'debug/bre
akpoints') }}">breakpoints</a>) |
| 34 (<a href="{{ app.locationManager.relativeLink(isolate.id, 'profile')
}}">profile</a>) | 33 (<a href="{{ app.locationManager.relativeLink(isolate.id, 'profile')
}}">profile</a>) |
| 35 </small> | 34 </small> |
| 36 </div> | 35 </div> |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 <br> | 90 <br> |
| 92 <pre>{{ isolate.topFrame['line'] }} {{ isolate.topFrame['lineSt
ring'] }}</pre> | 91 <pre>{{ isolate.topFrame['line'] }} {{ isolate.topFrame['lineSt
ring'] }}</pre> |
| 93 </template> | 92 </template> |
| 94 </div> | 93 </div> |
| 95 <div class="col-md-3"> | 94 <div class="col-md-3"> |
| 96 </div> | 95 </div> |
| 97 </div> | 96 </div> |
| 98 </template> | 97 </template> |
| 99 <script type="application/dart" src="isolate_summary.dart"></script> | 98 <script type="application/dart" src="isolate_summary.dart"></script> |
| 100 </polymer-element> | 99 </polymer-element> |
| OLD | NEW |