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

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

Issue 897193002: Finish moving service protocol to json rpc. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: code review Created 5 years, 10 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 | Annotate | Revision Log
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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/heap_map.html ('k') | runtime/observatory/lib/src/elements/io_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698