| OLD | NEW |
| 1 <head> | 1 <head> |
| 2 <link rel="import" href="class_ref.html"> | 2 <link rel="import" href="class_ref.html"> |
| 3 <link rel="import" href="nav_bar.html"> |
| 3 <link rel="import" href="observatory_element.html"> | 4 <link rel="import" href="observatory_element.html"> |
| 4 </head> | 5 </head> |
| 5 <polymer-element name="heap-profile" extends="observatory-element"> | 6 <polymer-element name="heap-profile" extends="observatory-element"> |
| 6 <template> | 7 <template> |
| 7 <div> | 8 <nav-bar> |
| 8 <button type="button" on-click="{{refreshData}}">Refresh</button> | 9 <top-nav-menu></top-nav-menu> |
| 10 <isolate-nav-menu app="{{ app }}" isolate="{{ app.locationManager.currentIso
late() }}"> |
| 11 </isolate-nav-menu> |
| 12 <nav-menu link="." anchor="heap profile" last="{{ true }}"></nav-menu> |
| 13 <nav-refresh callback="{{ this.refresh }}"></nav-refresh> |
| 14 </nav-bar> |
| 15 |
| 9 <button type="button" on-click="{{resetAccumulator}}">Reset Accumulator</butto
n> | 16 <button type="button" on-click="{{resetAccumulator}}">Reset Accumulator</butto
n> |
| 10 </div> | |
| 11 <div class="row"> | 17 <div class="row"> |
| 12 <div id="newPieChart" class="col-md-4" style="height: 400px"> | 18 <div id="newPieChart" class="col-md-4" style="height: 400px"> |
| 13 </div> | 19 </div> |
| 14 <div id="newStatus" class="col-md-2"> | 20 <div id="newStatus" class="col-md-2"> |
| 15 <table class="table"> | 21 <table class="table"> |
| 16 <tbody> | 22 <tbody> |
| 17 <tr> | 23 <tr> |
| 18 <td>Collections</td> | 24 <td>Collections</td> |
| 19 <td>{{ formattedCollections(true) }}</td> | 25 <td>{{ formattedCollections(true) }}</td> |
| 20 </tr> | 26 </tr> |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 </div> | 64 </div> |
| 59 <div class="row"> | 65 <div class="row"> |
| 60 <p class="col-md-2">Individual heap table</p> | 66 <p class="col-md-2">Individual heap table</p> |
| 61 </div> | 67 </div> |
| 62 <div class="row"> | 68 <div class="row"> |
| 63 <div id="table" class="col-md-12" style="height: 800px"></div> | 69 <div id="table" class="col-md-12" style="height: 800px"></div> |
| 64 </div> | 70 </div> |
| 65 </template> | 71 </template> |
| 66 <script type="application/dart" src="heap_profile.dart"></script> | 72 <script type="application/dart" src="heap_profile.dart"></script> |
| 67 </polymer-element> | 73 </polymer-element> |
| OLD | NEW |