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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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="{{ makeLink('/allocation-profiler', profile.isolate) }}" 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> | |
64 </nav-bar> | 63 </nav-bar> |
65 <div class="content"> | 64 <div class="content"> |
66 <h1>Allocation Profile</h1> | 65 <h1>Allocation Profile</h1> |
67 <br> | 66 <br> |
68 <div class="memberList"> | 67 <div class="memberList"> |
69 <div class="memberItem"> | 68 <div class="memberItem"> |
70 <div class="memberName">last forced GC at</div> | 69 <div class="memberName">last forced GC at</div> |
71 <div class="memberValue">{{ lastServiceGC }}</div> | 70 <div class="memberValue">{{ lastServiceGC }}</div> |
72 </div> | 71 </div> |
73 <div class="memberItem"> | 72 <div class="memberItem"> |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 <tbody id="classTableBody"> | 176 <tbody id="classTableBody"> |
178 </tbody> | 177 </tbody> |
179 </table> | 178 </table> |
180 <br><br><br> | 179 <br><br><br> |
181 <br><br><br> | 180 <br><br><br> |
182 </div> | 181 </div> |
183 </template> | 182 </template> |
184 </polymer-element> | 183 </polymer-element> |
185 | 184 |
186 <script type="application/dart" src="heap_profile.dart"></script> | 185 <script type="application/dart" src="heap_profile.dart"></script> |
OLD | NEW |