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

Side by Side Diff: runtime/bin/vmservice/client/lib/src/elements/heap_profile.html

Issue 262303002: Observatory grab-bag for 1.4 release. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: gen js Created 6 years, 7 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 <head> 1 <head>
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 </head> 5 </head>
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="packages/observatory/src/elements/css/shared.css" > 8 <link rel="stylesheet" href="packages/observatory/src/elements/css/shared.css" >
9 <style> 9 <style>
10 .table { 10 .table {
(...skipping 23 matching lines...) Expand all
34 text-decoration: underline; 34 text-decoration: underline;
35 cursor: pointer; 35 cursor: pointer;
36 } 36 }
37 #classtable tr:hover > td { 37 #classtable tr:hover > td {
38 background-color: #F4C7C3; 38 background-color: #F4C7C3;
39 } 39 }
40 </style> 40 </style>
41 <nav-bar> 41 <nav-bar>
42 <top-nav-menu></top-nav-menu> 42 <top-nav-menu></top-nav-menu>
43 <isolate-nav-menu isolate="{{ profile.isolate }}"></isolate-nav-menu> 43 <isolate-nav-menu isolate="{{ profile.isolate }}"></isolate-nav-menu>
44 <nav-menu link="." anchor="heap profile" last="{{ true }}"></nav-menu> 44 <nav-menu link="{{ profile.isolate.relativeHashLink('allocationprofile') }}" anchor="heap profile" last="{{ true }}"></nav-menu>
45 <nav-refresh callback="{{ resetAccumulator }}" label="Reset Accumulator"></n av-refresh> 45 <nav-refresh callback="{{ resetAccumulator }}" label="Reset Accumulator"></n av-refresh>
46 <nav-refresh callback="{{ refreshGC }}" label="GC"></nav-refresh> 46 <nav-refresh callback="{{ refreshGC }}" label="GC"></nav-refresh>
47 <nav-refresh callback="{{ refresh }}"></nav-refresh> 47 <nav-refresh callback="{{ refresh }}"></nav-refresh>
48 </nav-bar> 48 </nav-bar>
49 49
50 <div class="flex-row"> 50 <div class="flex-row">
51 <div id="newPieChart" class="flex-item-fixed-4-12" style="height: 400px"> 51 <div id="newPieChart" class="flex-item-fixed-4-12" style="height: 400px">
52 </div> 52 </div>
53 <div id="newStatus" class="flex-item-fixed-2-12"> 53 <div id="newStatus" class="flex-item-fixed-2-12">
54 <div class="memberList"> 54 <div class="memberList">
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 <td title="{{ classTable.getValue(row, 4) }}">{{ classTable.getFormatt edValue(row, 4) }}</td> 107 <td title="{{ classTable.getValue(row, 4) }}">{{ classTable.getFormatt edValue(row, 4) }}</td>
108 <td title="{{ classTable.getValue(row, 5) }}">{{ classTable.getFormatt edValue(row, 5) }}</td> 108 <td title="{{ classTable.getValue(row, 5) }}">{{ classTable.getFormatt edValue(row, 5) }}</td>
109 <td title="{{ classTable.getValue(row, 6) }}">{{ classTable.getFormatt edValue(row, 6) }}</td> 109 <td title="{{ classTable.getValue(row, 6) }}">{{ classTable.getFormatt edValue(row, 6) }}</td>
110 </tr> 110 </tr>
111 </tbody> 111 </tbody>
112 </table> 112 </table>
113 </div> 113 </div>
114 </template> 114 </template>
115 <script type="application/dart" src="heap_profile.dart"></script> 115 <script type="application/dart" src="heap_profile.dart"></script>
116 </polymer-element> 116 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698