| 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"> | |
| 5 <link rel="import" href="view_footer.html"> | |
| 6 | 4 |
| 7 <polymer-element name="heap-profile" extends="observatory-element"> | 5 <polymer-element name="heap-profile" extends="observatory-element"> |
| 8 <template> | 6 <template> |
| 9 <link rel="stylesheet" href="css/shared.css"> | 7 <link rel="stylesheet" href="css/shared.css"> |
| 10 <style> | 8 <style> |
| 11 .table { | 9 .table { |
| 12 border-collapse: collapse!important; | 10 border-collapse: collapse!important; |
| 13 margin-bottom: 20px | 11 margin-bottom: 20px |
| 14 table-layout: fixed; | 12 table-layout: fixed; |
| 15 } | 13 } |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 <top-nav-menu></top-nav-menu> | 67 <top-nav-menu></top-nav-menu> |
| 70 <vm-nav-menu vm="{{ profile.isolate.vm }}"></vm-nav-menu> | 68 <vm-nav-menu vm="{{ profile.isolate.vm }}"></vm-nav-menu> |
| 71 <isolate-nav-menu isolate="{{ profile.isolate }}"></isolate-nav-menu> | 69 <isolate-nav-menu isolate="{{ profile.isolate }}"></isolate-nav-menu> |
| 72 <nav-menu link="{{ makeLink('/allocation-profiler', profile.isolate) }}" anc
hor="allocation profile" last="{{ true }}"></nav-menu> | 70 <nav-menu link="{{ makeLink('/allocation-profiler', profile.isolate) }}" anc
hor="allocation profile" last="{{ true }}"></nav-menu> |
| 73 <nav-refresh callback="{{ resetAccumulator }}" label="Reset Accumulator"></n
av-refresh> | 71 <nav-refresh callback="{{ resetAccumulator }}" label="Reset Accumulator"></n
av-refresh> |
| 74 <nav-refresh callback="{{ refreshGC }}" label="GC"></nav-refresh> | 72 <nav-refresh callback="{{ refreshGC }}" label="GC"></nav-refresh> |
| 75 <nav-refresh callback="{{ refresh }}"></nav-refresh> | 73 <nav-refresh callback="{{ refresh }}"></nav-refresh> |
| 76 <div class="nav-option"> | 74 <div class="nav-option"> |
| 77 <input type="checkbox" checked="{{ autoRefresh }}">Auto-refresh on GC | 75 <input type="checkbox" checked="{{ autoRefresh }}">Auto-refresh on GC |
| 78 </div> | 76 </div> |
| 77 <nav-notify notifications="{{ app.notifications }}"></nav-notify> |
| 79 </nav-bar> | 78 </nav-bar> |
| 80 <div class="content"> | 79 <div class="content"> |
| 81 <h1>Allocation Profile</h1> | 80 <h1>Allocation Profile</h1> |
| 82 <br> | 81 <br> |
| 83 <div class="memberList"> | 82 <div class="memberList"> |
| 84 <div class="memberItem"> | 83 <div class="memberItem"> |
| 85 <div class="memberName">last forced GC at</div> | 84 <div class="memberName">last forced GC at</div> |
| 86 <div class="memberValue">{{ lastServiceGC }}</div> | 85 <div class="memberValue">{{ lastServiceGC }}</div> |
| 87 </div> | 86 </div> |
| 88 <div class="memberItem"> | 87 <div class="memberItem"> |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 </thead> | 202 </thead> |
| 204 <tbody id="classTableBody"> | 203 <tbody id="classTableBody"> |
| 205 </tbody> | 204 </tbody> |
| 206 </table> | 205 </table> |
| 207 <view-footer></view-footer> | 206 <view-footer></view-footer> |
| 208 </div> | 207 </div> |
| 209 </template> | 208 </template> |
| 210 </polymer-element> | 209 </polymer-element> |
| 211 | 210 |
| 212 <script type="application/dart" src="heap_profile.dart"></script> | 211 <script type="application/dart" src="heap_profile.dart"></script> |
| OLD | NEW |