| 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 23 matching lines...) Expand all Loading... |
| 34 text-decoration: underline; | 34 text-decoration: underline; |
| 35 cursor: pointer; | 35 cursor: pointer; |
| 36 } | 36 } |
| 37 #classtable tr:hover > td { | 37 #classtable tr:hover > td { |
| 38 background-color: #F4C7C3; | 38 background-color: #F4C7C3; |
| 39 } | 39 } |
| 40 </style> | 40 </style> |
| 41 <nav-bar> | 41 <nav-bar> |
| 42 <top-nav-menu></top-nav-menu> | 42 <top-nav-menu></top-nav-menu> |
| 43 <isolate-nav-menu isolate="{{ profile.isolate }}"></isolate-nav-menu> | 43 <isolate-nav-menu isolate="{{ profile.isolate }}"></isolate-nav-menu> |
| 44 <nav-menu link="." anchor="heap profile" last="{{ true }}"></nav-menu> | 44 <nav-menu link="{{ profile.isolate.relativeHashLink('allocationprofile') }}"
anchor="heap profile" last="{{ true }}"></nav-menu> |
| 45 <nav-refresh callback="{{ resetAccumulator }}" label="Reset Accumulator"></n
av-refresh> | 45 <nav-refresh callback="{{ resetAccumulator }}" label="Reset Accumulator"></n
av-refresh> |
| 46 <nav-refresh callback="{{ refreshGC }}" label="GC"></nav-refresh> | 46 <nav-refresh callback="{{ refreshGC }}" label="GC"></nav-refresh> |
| 47 <nav-refresh callback="{{ refresh }}"></nav-refresh> | 47 <nav-refresh callback="{{ refresh }}"></nav-refresh> |
| 48 </nav-bar> | 48 </nav-bar> |
| 49 | 49 |
| 50 <div class="flex-row"> | 50 <div class="flex-row"> |
| 51 <div id="newPieChart" class="flex-item-fixed-4-12" style="height: 400px"> | 51 <div id="newPieChart" class="flex-item-fixed-4-12" style="height: 400px"> |
| 52 </div> | 52 </div> |
| 53 <div id="newStatus" class="flex-item-fixed-2-12"> | 53 <div id="newStatus" class="flex-item-fixed-2-12"> |
| 54 <div class="memberList"> | 54 <div class="memberList"> |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 <td title="{{ classTable.getValue(row, 4) }}">{{ classTable.getFormatt
edValue(row, 4) }}</td> | 107 <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> | 108 <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> | 109 <td title="{{ classTable.getValue(row, 6) }}">{{ classTable.getFormatt
edValue(row, 6) }}</td> |
| 110 </tr> | 110 </tr> |
| 111 </tbody> | 111 </tbody> |
| 112 </table> | 112 </table> |
| 113 </div> | 113 </div> |
| 114 </template> | 114 </template> |
| 115 <script type="application/dart" src="heap_profile.dart"></script> | 115 <script type="application/dart" src="heap_profile.dart"></script> |
| 116 </polymer-element> | 116 </polymer-element> |
| OLD | NEW |