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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 <top-nav-menu></top-nav-menu> | 68 <top-nav-menu></top-nav-menu> |
69 <vm-nav-menu vm="{{ profile.isolate.vm }}"></vm-nav-menu> | 69 <vm-nav-menu vm="{{ profile.isolate.vm }}"></vm-nav-menu> |
70 <isolate-nav-menu isolate="{{ profile.isolate }}"></isolate-nav-menu> | 70 <isolate-nav-menu isolate="{{ profile.isolate }}"></isolate-nav-menu> |
71 <nav-menu link="{{ makeLink('/allocation-profiler', profile.isolate) }}" anc
hor="allocation profile" last="{{ true }}"></nav-menu> | 71 <nav-menu link="{{ makeLink('/allocation-profiler', profile.isolate) }}" anc
hor="allocation profile" last="{{ true }}"></nav-menu> |
72 <nav-refresh callback="{{ resetAccumulator }}" label="Reset Accumulator"></n
av-refresh> | 72 <nav-refresh callback="{{ resetAccumulator }}" label="Reset Accumulator"></n
av-refresh> |
73 <nav-refresh callback="{{ refreshGC }}" label="GC"></nav-refresh> | 73 <nav-refresh callback="{{ refreshGC }}" label="GC"></nav-refresh> |
74 <nav-refresh callback="{{ refresh }}"></nav-refresh> | 74 <nav-refresh callback="{{ refresh }}"></nav-refresh> |
75 <div class="nav-option"> | 75 <div class="nav-option"> |
76 <input type="checkbox" checked="{{ autoRefresh }}">Auto-refresh on GC | 76 <input type="checkbox" checked="{{ autoRefresh }}">Auto-refresh on GC |
77 </div> | 77 </div> |
| 78 <nav-notify notifications="{{ app.notifications }}"></nav-notify> |
78 </nav-bar> | 79 </nav-bar> |
79 <div class="content"> | 80 <div class="content"> |
80 <h1>Allocation Profile</h1> | 81 <h1>Allocation Profile</h1> |
81 <br> | 82 <br> |
82 <div class="memberList"> | 83 <div class="memberList"> |
83 <div class="memberItem"> | 84 <div class="memberItem"> |
84 <div class="memberName">last forced GC at</div> | 85 <div class="memberName">last forced GC at</div> |
85 <div class="memberValue">{{ lastServiceGC }}</div> | 86 <div class="memberValue">{{ lastServiceGC }}</div> |
86 </div> | 87 </div> |
87 <div class="memberItem"> | 88 <div class="memberItem"> |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 </thead> | 203 </thead> |
203 <tbody id="classTableBody"> | 204 <tbody id="classTableBody"> |
204 </tbody> | 205 </tbody> |
205 </table> | 206 </table> |
206 <view-footer></view-footer> | 207 <view-footer></view-footer> |
207 </div> | 208 </div> |
208 </template> | 209 </template> |
209 </polymer-element> | 210 </polymer-element> |
210 | 211 |
211 <script type="application/dart" src="heap_profile.dart"></script> | 212 <script type="application/dart" src="heap_profile.dart"></script> |
OLD | NEW |