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

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

Issue 251043003: Observatory Display PC descriptors with disassembling (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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="css/shared.css"> 8 <link rel="stylesheet" href="packages/observatory/src/elements/css/shared.css" >
9 <style> 9 <style>
10 .table { 10 .table {
11 border-collapse: collapse!important; 11 border-collapse: collapse!important;
12 width: 100%; 12 width: 100%;
13 margin-bottom: 20px 13 margin-bottom: 20px
14 table-layout: fixed; 14 table-layout: fixed;
15 } 15 }
16 .table td:nth-of-type(1) { 16 .table td:nth-of-type(1) {
17 width: 30%; 17 width: 30%;
18 } 18 }
(...skipping 88 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