| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 margin: 3px; | 50 margin: 3px; |
| 51 padding: 8px; | 51 padding: 8px; |
| 52 } | 52 } |
| 53 </style> | 53 </style> |
| 54 <link rel="stylesheet" href="../../../../packages/charted/charts/themes/quantu
m_theme.css"> | 54 <link rel="stylesheet" href="../../../../packages/charted/charts/themes/quantu
m_theme.css"> |
| 55 <style> | 55 <style> |
| 56 .chart-wrapper { | 56 .chart-wrapper { |
| 57 } | 57 } |
| 58 | 58 |
| 59 .chart-host-wrapper { | 59 .chart-host-wrapper { |
| 60 height: 300px; | 60 height: 200px; |
| 61 } | 61 } |
| 62 .chart-legend-host { | 62 .chart-legend-host { |
| 63 max-height: 300px; | 63 max-height: 200px; |
| 64 overflow-x: auto; | 64 overflow-x: auto; |
| 65 overflow-y: auto; | 65 overflow-y: auto; |
| 66 } | 66 } |
| 67 </style> | 67 </style> |
| 68 <nav-bar> | 68 <nav-bar> |
| 69 <top-nav-menu></top-nav-menu> | 69 <top-nav-menu></top-nav-menu> |
| 70 <vm-nav-menu vm="{{ profile.isolate.vm }}"></vm-nav-menu> | 70 <vm-nav-menu vm="{{ profile.isolate.vm }}"></vm-nav-menu> |
| 71 <isolate-nav-menu isolate="{{ profile.isolate }}"></isolate-nav-menu> | 71 <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> | 72 <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> | 73 <nav-refresh callback="{{ resetAccumulator }}" label="Reset Accumulator"></n
av-refresh> |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 </thead> | 201 </thead> |
| 202 <tbody id="classTableBody"> | 202 <tbody id="classTableBody"> |
| 203 </tbody> | 203 </tbody> |
| 204 </table> | 204 </table> |
| 205 <view-footer></view-footer> | 205 <view-footer></view-footer> |
| 206 </div> | 206 </div> |
| 207 </template> | 207 </template> |
| 208 </polymer-element> | 208 </polymer-element> |
| 209 | 209 |
| 210 <script type="application/dart" src="heap_profile.dart"></script> | 210 <script type="application/dart" src="heap_profile.dart"></script> |
| OLD | NEW |