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

Side by Side Diff: dart/runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/heap_profile.html

Issue 322303002: Version 1.5.0-dev.4.6 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 6 years, 6 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="css/shared.css"> 8 <link rel="stylesheet" href="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="{{ profile.isolate.relativeHashLink('allocationprofile') }}" anchor="heap profile" last="{{ true }}"></nav-menu> 44 <nav-menu link="{{ profile.isolate.relativeLink('allocationprofile') }}" anc hor="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-control></nav-control>
48 </nav-bar> 49 </nav-bar>
49 50
50 <div class="flex-row"> 51 <div class="flex-row">
51 <div id="newPieChart" class="flex-item-fixed-4-12" style="height: 400px"> 52 <div id="newPieChart" class="flex-item-fixed-4-12" style="height: 400px">
52 </div> 53 </div>
53 <div id="newStatus" class="flex-item-fixed-2-12"> 54 <div id="newStatus" class="flex-item-fixed-2-12">
54 <div class="memberList"> 55 <div class="memberList">
55 <div class="memberItem"> 56 <div class="memberItem">
56 <div class="memberName">Collections</div> 57 <div class="memberName">Collections</div>
57 <div class="memberValue">{{ formattedCollections(true) }}</div> 58 <div class="memberValue">{{ formattedCollections(true) }}</div>
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 <td title="{{ classTable.getValue(row, 6) }}">{{ classTable.getFormatt edValue(row, 6) }}</td> 112 <td title="{{ classTable.getValue(row, 6) }}">{{ classTable.getFormatt edValue(row, 6) }}</td>
112 <td title="{{ classTable.getValue(row, 7) }}">{{ classTable.getFormatt edValue(row, 7) }}</td> 113 <td title="{{ classTable.getValue(row, 7) }}">{{ classTable.getFormatt edValue(row, 7) }}</td>
113 <td title="{{ classTable.getValue(row, 8) }}">{{ classTable.getFormatt edValue(row, 8) }}</td> 114 <td title="{{ classTable.getValue(row, 8) }}">{{ classTable.getFormatt edValue(row, 8) }}</td>
114 </tr> 115 </tr>
115 </tbody> 116 </tbody>
116 </table> 117 </table>
117 </div> 118 </div>
118 </template> 119 </template>
119 <script type="application/dart" src="heap_profile.dart"></script> 120 <script type="application/dart" src="heap_profile.dart"></script>
120 </polymer-element> 121 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698