| OLD | NEW |
| 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> | 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> |
| 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 <link rel="import" href="view_footer.html"> |
| 5 | 6 |
| 6 <polymer-element name="heap-profile" extends="observatory-element"> | 7 <polymer-element name="heap-profile" extends="observatory-element"> |
| 7 <template> | 8 <template> |
| 8 <link rel="stylesheet" href="css/shared.css"> | 9 <link rel="stylesheet" href="css/shared.css"> |
| 9 <style> | 10 <style> |
| 10 .table { | 11 .table { |
| 11 border-collapse: collapse!important; | 12 border-collapse: collapse!important; |
| 12 margin-bottom: 20px | 13 margin-bottom: 20px |
| 13 table-layout: fixed; | 14 table-layout: fixed; |
| 14 } | 15 } |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 <th class="spacer"></th> | 170 <th class="spacer"></th> |
| 170 <th on-click="{{changeSort}}" class="clickable" title="Old Accumulated
Size">{{ classTable.getColumnLabel(7) }}</th> | 171 <th on-click="{{changeSort}}" class="clickable" title="Old Accumulated
Size">{{ classTable.getColumnLabel(7) }}</th> |
| 171 <th on-click="{{changeSort}}" class="clickable" title="Old Accumulated
Instances">{{ classTable.getColumnLabel(8) }}</th> | 172 <th on-click="{{changeSort}}" class="clickable" title="Old Accumulated
Instances">{{ classTable.getColumnLabel(8) }}</th> |
| 172 <th on-click="{{changeSort}}" class="clickable" title="Old Current Siz
e">{{ classTable.getColumnLabel(9) }}</th> | 173 <th on-click="{{changeSort}}" class="clickable" title="Old Current Siz
e">{{ classTable.getColumnLabel(9) }}</th> |
| 173 <th on-click="{{changeSort}}" class="clickable" title="Old Current Ins
tances">{{ classTable.getColumnLabel(10) }}</th> | 174 <th on-click="{{changeSort}}" class="clickable" title="Old Current Ins
tances">{{ classTable.getColumnLabel(10) }}</th> |
| 174 </tr> | 175 </tr> |
| 175 </thead> | 176 </thead> |
| 176 <tbody id="classTableBody"> | 177 <tbody id="classTableBody"> |
| 177 </tbody> | 178 </tbody> |
| 178 </table> | 179 </table> |
| 179 <br><br><br> | 180 <view-footer></view-footer> |
| 180 <br><br><br> | |
| 181 </div> | 181 </div> |
| 182 </template> | 182 </template> |
| 183 </polymer-element> | 183 </polymer-element> |
| 184 | 184 |
| 185 <script type="application/dart" src="heap_profile.dart"></script> | 185 <script type="application/dart" src="heap_profile.dart"></script> |
| OLD | NEW |