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