| 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 | 5 |
| 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="css/shared.css"> | 8 <link rel="stylesheet" href="css/shared.css"> |
| 9 <style> | 9 <style> |
| 10 .table { | 10 .table { |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 text-decoration: none; | 36 text-decoration: none; |
| 37 cursor: pointer; | 37 cursor: pointer; |
| 38 } | 38 } |
| 39 .clickable:hover { | 39 .clickable:hover { |
| 40 text-decoration: underline; | 40 text-decoration: underline; |
| 41 cursor: pointer; | 41 cursor: pointer; |
| 42 } | 42 } |
| 43 #classtable tr:hover > td { | 43 #classtable tr:hover > td { |
| 44 background-color: #F4C7C3; | 44 background-color: #F4C7C3; |
| 45 } | 45 } |
| 46 .nav-option { |
| 47 color: white; |
| 48 float: right; |
| 49 margin: 3px; |
| 50 padding: 8px; |
| 51 } |
| 46 </style> | 52 </style> |
| 47 <nav-bar> | 53 <nav-bar> |
| 48 <top-nav-menu></top-nav-menu> | 54 <top-nav-menu></top-nav-menu> |
| 49 <isolate-nav-menu isolate="{{ profile.isolate }}"></isolate-nav-menu> | 55 <isolate-nav-menu isolate="{{ profile.isolate }}"></isolate-nav-menu> |
| 50 <nav-menu link="{{ profile.isolate.relativeLink('allocationprofile') }}" anc
hor="allocation profile" last="{{ true }}"></nav-menu> | 56 <nav-menu link="{{ profile.isolate.relativeLink('allocationprofile') }}" anc
hor="allocation profile" last="{{ true }}"></nav-menu> |
| 51 <nav-refresh callback="{{ resetAccumulator }}" label="Reset Accumulator"></n
av-refresh> | 57 <nav-refresh callback="{{ resetAccumulator }}" label="Reset Accumulator"></n
av-refresh> |
| 52 <nav-refresh callback="{{ refreshGC }}" label="GC"></nav-refresh> | 58 <nav-refresh callback="{{ refreshGC }}" label="GC"></nav-refresh> |
| 53 <nav-refresh callback="{{ refresh }}"></nav-refresh> | 59 <nav-refresh callback="{{ refresh }}"></nav-refresh> |
| 60 <div class="nav-option"> |
| 61 <input type="checkbox" checked="{{ autoRefresh }}">Auto-refresh on GC |
| 62 </div> |
| 54 <nav-control></nav-control> | 63 <nav-control></nav-control> |
| 55 </nav-bar> | 64 </nav-bar> |
| 56 <div class="content"> | 65 <div class="content"> |
| 57 <h1>Allocation Profile</h1> | 66 <h1>Allocation Profile</h1> |
| 58 <br> | 67 <br> |
| 59 <div class="memberList"> | 68 <div class="memberList"> |
| 60 <div class="memberItem"> | 69 <div class="memberItem"> |
| 61 <div class="memberName">last forced GC at</div> | 70 <div class="memberName">last forced GC at</div> |
| 62 <div class="memberValue">{{ lastServiceGC }}</div> | 71 <div class="memberValue">{{ lastServiceGC }}</div> |
| 63 </div> | 72 </div> |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 </thead> | 176 </thead> |
| 168 <tbody id="classTableBody"> | 177 <tbody id="classTableBody"> |
| 169 </tbody> | 178 </tbody> |
| 170 </table> | 179 </table> |
| 171 <br><br><br> | 180 <br><br><br> |
| 172 <br><br><br> | 181 <br><br><br> |
| 173 </div> | 182 </div> |
| 174 </template> | 183 </template> |
| 175 </polymer-element> | 184 </polymer-element> |
| 176 | 185 |
| 177 <script type="application/dart" src="heap_profile.dart"></script> | 186 <script type="application/dart" src="heap_profile.dart"></script> |
| OLD | NEW |