| 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 <link rel="import" href="view_footer.html"> |
| 6 | 6 |
| 7 <polymer-element name="heap-profile" extends="observatory-element"> | 7 <polymer-element name="heap-profile" extends="observatory-element"> |
| 8 <template> | 8 <template> |
| 9 <link rel="stylesheet" href="css/shared.css"> | 9 <link rel="stylesheet" href="css/shared.css"> |
| 10 <style> | 10 <style> |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 } | 46 } |
| 47 .nav-option { | 47 .nav-option { |
| 48 color: white; | 48 color: white; |
| 49 float: right; | 49 float: right; |
| 50 margin: 3px; | 50 margin: 3px; |
| 51 padding: 8px; | 51 padding: 8px; |
| 52 } | 52 } |
| 53 </style> | 53 </style> |
| 54 <nav-bar> | 54 <nav-bar> |
| 55 <top-nav-menu></top-nav-menu> | 55 <top-nav-menu></top-nav-menu> |
| 56 <vm-nav-menu vm="{{ profile.isolate.vm }}"></vm-nav-menu> |
| 56 <isolate-nav-menu isolate="{{ profile.isolate }}"></isolate-nav-menu> | 57 <isolate-nav-menu isolate="{{ profile.isolate }}"></isolate-nav-menu> |
| 57 <nav-menu link="{{ makeLink('/allocation-profiler', profile.isolate) }}" anc
hor="allocation profile" last="{{ true }}"></nav-menu> | 58 <nav-menu link="{{ makeLink('/allocation-profiler', profile.isolate) }}" anc
hor="allocation profile" last="{{ true }}"></nav-menu> |
| 58 <nav-refresh callback="{{ resetAccumulator }}" label="Reset Accumulator"></n
av-refresh> | 59 <nav-refresh callback="{{ resetAccumulator }}" label="Reset Accumulator"></n
av-refresh> |
| 59 <nav-refresh callback="{{ refreshGC }}" label="GC"></nav-refresh> | 60 <nav-refresh callback="{{ refreshGC }}" label="GC"></nav-refresh> |
| 60 <nav-refresh callback="{{ refresh }}"></nav-refresh> | 61 <nav-refresh callback="{{ refresh }}"></nav-refresh> |
| 61 <div class="nav-option"> | 62 <div class="nav-option"> |
| 62 <input type="checkbox" checked="{{ autoRefresh }}">Auto-refresh on GC | 63 <input type="checkbox" checked="{{ autoRefresh }}">Auto-refresh on GC |
| 63 </div> | 64 </div> |
| 64 </nav-bar> | 65 </nav-bar> |
| 65 <div class="content"> | 66 <div class="content"> |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 </thead> | 177 </thead> |
| 177 <tbody id="classTableBody"> | 178 <tbody id="classTableBody"> |
| 178 </tbody> | 179 </tbody> |
| 179 </table> | 180 </table> |
| 180 <view-footer></view-footer> | 181 <view-footer></view-footer> |
| 181 </div> | 182 </div> |
| 182 </template> | 183 </template> |
| 183 </polymer-element> | 184 </polymer-element> |
| 184 | 185 |
| 185 <script type="application/dart" src="heap_profile.dart"></script> | 186 <script type="application/dart" src="heap_profile.dart"></script> |
| OLD | NEW |