| 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="observatory_element.html"> | 3 <link rel="import" href="observatory_element.html"> |
| 4 <link rel="import" href="nav_bar.html"> | 4 <link rel="import" href="nav_bar.html"> |
| 5 </head> | 5 </head> |
| 6 <polymer-element name="heap-profile" extends="observatory-element"> | 6 <polymer-element name="heap-profile" extends="observatory-element"> |
| 7 <template> | 7 <template> |
| 8 <link rel="stylesheet" href="packages/observatory/src/elements/css/shared.css"
> | 8 <link rel="stylesheet" href="packages/observatory/src/elements/css/shared.css"
> |
| 9 <style> | 9 <style> |
| 10 .table { | 10 .table { |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 <div class="memberValue">{{ formattedTotalCollectionTime(false) }}</
div> | 83 <div class="memberValue">{{ formattedTotalCollectionTime(false) }}</
div> |
| 84 </div> | 84 </div> |
| 85 </div> | 85 </div> |
| 86 </div> | 86 </div> |
| 87 </div> | 87 </div> |
| 88 <div class="flex-row"> | 88 <div class="flex-row"> |
| 89 <table id="classtable" class="flex-item-fixed-12-12 table"> | 89 <table id="classtable" class="flex-item-fixed-12-12 table"> |
| 90 <thead> | 90 <thead> |
| 91 <tr> | 91 <tr> |
| 92 <th on-click="{{changeSort}}" class="clickable" title="Class">{{ class
Table.getColumnLabel(0) }}</th> | 92 <th on-click="{{changeSort}}" class="clickable" title="Class">{{ class
Table.getColumnLabel(0) }}</th> |
| 93 <th on-click="{{changeSort}}" class="clickable" title="Total Accumulat
ed Size">{{ classTable.getColumnLabel(1) }}</th> | 93 <th on-click="{{changeSort}}" class="clickable" title="New Accumulated
Size">{{ classTable.getColumnLabel(1) }}</th> |
| 94 <th on-click="{{changeSort}}" class="clickable" title="Total Accumulat
ed Instances">{{ classTable.getColumnLabel(2) }}</th> | 94 <th on-click="{{changeSort}}" class="clickable" title="New Accumulated
Instances">{{ classTable.getColumnLabel(2) }}</th> |
| 95 <th on-click="{{changeSort}}" class="clickable" title="Old Space Accum
ulated Size">{{ classTable.getColumnLabel(3) }}</th> | 95 <th on-click="{{changeSort}}" class="clickable" title="New Current Siz
e">{{ classTable.getColumnLabel(3) }}</th> |
| 96 <th on-click="{{changeSort}}" class="clickable" title="Old Space Accum
ulated Instances">{{ classTable.getColumnLabel(4) }}</th> | 96 <th on-click="{{changeSort}}" class="clickable" title="New Current Ins
tances">{{ classTable.getColumnLabel(4) }}</th> |
| 97 <th on-click="{{changeSort}}" class="clickable" title="Total Current S
ize">{{ classTable.getColumnLabel(5) }}</th> | 97 <th on-click="{{changeSort}}" class="clickable" title="Old Accumulated
Size">{{ classTable.getColumnLabel(5) }}</th> |
| 98 <th on-click="{{changeSort}}" class="clickable" title="Total Current I
nstances">{{ classTable.getColumnLabel(6) }}</th> | 98 <th on-click="{{changeSort}}" class="clickable" title="Old Accumulated
Instances">{{ classTable.getColumnLabel(6) }}</th> |
| 99 <th on-click="{{changeSort}}" class="clickable" title="Old Current Siz
e">{{ classTable.getColumnLabel(7) }}</th> |
| 100 <th on-click="{{changeSort}}" class="clickable" title="Old Current Ins
tances">{{ classTable.getColumnLabel(8) }}</th> |
| 99 </tr> | 101 </tr> |
| 100 </thead> | 102 </thead> |
| 101 <tbody> | 103 <tbody> |
| 102 <tr template repeat="{{row in classTable.sortedRows }}"> | 104 <tr template repeat="{{row in classTable.sortedRows }}"> |
| 103 <td><class-ref ref="{{ classTable.getValue(row, 0) }}"></class-ref></t
d> | 105 <td><class-ref ref="{{ classTable.getValue(row, 0) }}"></class-ref></t
d> |
| 104 <td title="{{ classTable.getValue(row, 1) }}">{{ classTable.getFormatt
edValue(row, 1) }}</td> | 106 <td title="{{ classTable.getValue(row, 1) }}">{{ classTable.getFormatt
edValue(row, 1) }}</td> |
| 105 <td title="{{ classTable.getValue(row, 2) }}">{{ classTable.getFormatt
edValue(row, 2) }}</td> | 107 <td title="{{ classTable.getValue(row, 2) }}">{{ classTable.getFormatt
edValue(row, 2) }}</td> |
| 106 <td title="{{ classTable.getValue(row, 3) }}">{{ classTable.getFormatt
edValue(row, 3) }}</td> | 108 <td title="{{ classTable.getValue(row, 3) }}">{{ classTable.getFormatt
edValue(row, 3) }}</td> |
| 107 <td title="{{ classTable.getValue(row, 4) }}">{{ classTable.getFormatt
edValue(row, 4) }}</td> | 109 <td title="{{ classTable.getValue(row, 4) }}">{{ classTable.getFormatt
edValue(row, 4) }}</td> |
| 108 <td title="{{ classTable.getValue(row, 5) }}">{{ classTable.getFormatt
edValue(row, 5) }}</td> | 110 <td title="{{ classTable.getValue(row, 5) }}">{{ classTable.getFormatt
edValue(row, 5) }}</td> |
| 109 <td title="{{ classTable.getValue(row, 6) }}">{{ classTable.getFormatt
edValue(row, 6) }}</td> | 111 <td title="{{ classTable.getValue(row, 6) }}">{{ classTable.getFormatt
edValue(row, 6) }}</td> |
| 112 <td title="{{ classTable.getValue(row, 7) }}">{{ classTable.getFormatt
edValue(row, 7) }}</td> |
| 113 <td title="{{ classTable.getValue(row, 8) }}">{{ classTable.getFormatt
edValue(row, 8) }}</td> |
| 110 </tr> | 114 </tr> |
| 111 </tbody> | 115 </tbody> |
| 112 </table> | 116 </table> |
| 113 </div> | 117 </div> |
| 114 </template> | 118 </template> |
| 115 <script type="application/dart" src="heap_profile.dart"></script> | 119 <script type="application/dart" src="heap_profile.dart"></script> |
| 116 </polymer-element> | 120 </polymer-element> |
| OLD | NEW |