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

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

Issue 1063063006: Add links to Observatory documentation and bug tracking. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 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 <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 <link rel="import" href="view_footer.html">
5 6
6 <polymer-element name="heap-profile" extends="observatory-element"> 7 <polymer-element name="heap-profile" extends="observatory-element">
7 <template> 8 <template>
8 <link rel="stylesheet" href="css/shared.css"> 9 <link rel="stylesheet" href="css/shared.css">
9 <style> 10 <style>
10 .table { 11 .table {
11 border-collapse: collapse!important; 12 border-collapse: collapse!important;
12 margin-bottom: 20px 13 margin-bottom: 20px
13 table-layout: fixed; 14 table-layout: fixed;
14 } 15 }
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 <th class="spacer"></th> 170 <th class="spacer"></th>
170 <th on-click="{{changeSort}}" class="clickable" title="Old Accumulated Size">{{ classTable.getColumnLabel(7) }}</th> 171 <th on-click="{{changeSort}}" class="clickable" title="Old Accumulated Size">{{ classTable.getColumnLabel(7) }}</th>
171 <th on-click="{{changeSort}}" class="clickable" title="Old Accumulated Instances">{{ classTable.getColumnLabel(8) }}</th> 172 <th on-click="{{changeSort}}" class="clickable" title="Old Accumulated Instances">{{ classTable.getColumnLabel(8) }}</th>
172 <th on-click="{{changeSort}}" class="clickable" title="Old Current Siz e">{{ classTable.getColumnLabel(9) }}</th> 173 <th on-click="{{changeSort}}" class="clickable" title="Old Current Siz e">{{ classTable.getColumnLabel(9) }}</th>
173 <th on-click="{{changeSort}}" class="clickable" title="Old Current Ins tances">{{ classTable.getColumnLabel(10) }}</th> 174 <th on-click="{{changeSort}}" class="clickable" title="Old Current Ins tances">{{ classTable.getColumnLabel(10) }}</th>
174 </tr> 175 </tr>
175 </thead> 176 </thead>
176 <tbody id="classTableBody"> 177 <tbody id="classTableBody">
177 </tbody> 178 </tbody>
178 </table> 179 </table>
179 <br><br><br> 180 <view-footer></view-footer>
180 <br><br><br>
181 </div> 181 </div>
182 </template> 182 </template>
183 </polymer-element> 183 </polymer-element>
184 184
185 <script type="application/dart" src="heap_profile.dart"></script> 185 <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/instance_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698