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

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

Issue 342513004: Visual refresh of allocation profile page (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
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 <link rel="import" href="../../../../packages/polymer/polymer.html">
1 <link rel="import" href="nav_bar.html"> 2 <link rel="import" href="nav_bar.html">
2 <link rel="import" href="observatory_element.html"> 3 <link rel="import" href="observatory_element.html">
3 <link rel="import" href="class_ref.html"> 4 <link rel="import" href="class_ref.html">
4 5
5 <polymer-element name="class-tree" extends="observatory-element"> 6 <polymer-element name="class-tree" extends="observatory-element">
6 <template> 7 <template>
7 <link rel="stylesheet" href="css/shared.css"> 8 <link rel="stylesheet" href="css/shared.css">
8 <style> 9 <style>
9 .table { 10 .table {
10 border-collapse: collapse!important; 11 border-collapse: collapse!important;
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 <class-ref ref="{{ row.cls }}"></class-ref> 111 <class-ref ref="{{ row.cls }}"></class-ref>
111 </td> 112 </td>
112 </tr> 113 </tr>
113 </tbody> 114 </tbody>
114 </table> 115 </table>
115 </div> 116 </div>
116 </template> 117 </template>
117 </polymer-element> 118 </polymer-element>
118 119
119 <script type="application/dart" src="class_tree.dart"></script> 120 <script type="application/dart" src="class_tree.dart"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698