Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(211)

Side by Side Diff: runtime/observatory/lib/src/elements/heap_profile.html

Issue 2161363002: Refactoring of nav-notify (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Removed duplicated nav-notify tag Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/heap_map.html ('k') | runtime/observatory/lib/src/elements/heap_snapshot.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698