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"> | |
6 | 5 |
7 <polymer-element name="heap-map" extends="observatory-element"> | 6 <polymer-element name="heap-map" extends="observatory-element"> |
8 <template> | 7 <template> |
9 <link rel="stylesheet" href="css/shared.css"> | 8 <link rel="stylesheet" href="css/shared.css"> |
10 <style> | 9 <style> |
11 .hover { | 10 .hover { |
12 position: fixed; | 11 position: fixed; |
13 z-index: 999; | 12 z-index: 999; |
14 height: 16px; | 13 height: 16px; |
15 width: 100%; | 14 width: 100%; |
(...skipping 22 matching lines...) Expand all Loading... |
38 <!-- Make sure no data is covered by hover bar initially --> | 37 <!-- Make sure no data is covered by hover bar initially --> |
39 </div> | 38 </div> |
40 <div class="flex-row"> | 39 <div class="flex-row"> |
41 <canvas id="fragmentation" width="1px" height="1px"></canvas> | 40 <canvas id="fragmentation" width="1px" height="1px"></canvas> |
42 </div> | 41 </div> |
43 <view-footer></view-footer> | 42 <view-footer></view-footer> |
44 </template> | 43 </template> |
45 </polymer-element> | 44 </polymer-element> |
46 | 45 |
47 <script type="application/dart" src="heap_map.dart"></script> | 46 <script type="application/dart" src="heap_map.dart"></script> |
OLD | NEW |