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

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

Issue 2161363002: Refactoring of nav-notify (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Removed duplicated nav-notify tag Created 4 years, 5 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
« no previous file with comments | « no previous file | runtime/observatory/lib/src/elements/class_view.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <link rel="import" href="../../../../packages/polymer/polymer.html"> 1 <link rel="import" href="../../../../packages/polymer/polymer.html">
2 <link rel="import" href="nav_bar.html"> 2 <link rel="import" href="nav_bar.html">
3 <link rel="import" href="observatory_element.html"> 3 <link rel="import" href="observatory_element.html">
4 <link rel="import" href="class_ref.html"> 4 <link rel="import" href="class_ref.html">
5 5
6 <polymer-element name="class-tree" extends="observatory-element"> 6 <polymer-element name="class-tree" 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 13 matching lines...) Expand all
24 24
25 th { 25 th {
26 text-align: left; 26 text-align: left;
27 } 27 }
28 </style> 28 </style>
29 <nav-bar> 29 <nav-bar>
30 <top-nav-menu></top-nav-menu> 30 <top-nav-menu></top-nav-menu>
31 <vm-nav-menu vm="{{ isolate.vm }}"></vm-nav-menu> 31 <vm-nav-menu vm="{{ isolate.vm }}"></vm-nav-menu>
32 <isolate-nav-menu isolate="{{ isolate }}"></isolate-nav-menu> 32 <isolate-nav-menu isolate="{{ isolate }}"></isolate-nav-menu>
33 <nav-menu link="{{ makeLink('/class-tree', isolate) }}" anchor="class hier archy" last="{{ true }}"></nav-menu> 33 <nav-menu link="{{ makeLink('/class-tree', isolate) }}" anchor="class hier archy" last="{{ true }}"></nav-menu>
34 <nav-notify notifications="{{ app.notifications }}"></nav-notify>
34 </nav-bar> 35 </nav-bar>
35 <div class="content-centered"> 36 <div class="content-centered">
36 <h1>Class Hierarchy</h1> 37 <h1>Class Hierarchy</h1>
37 <table id="tableTree" class="table"> 38 <table id="tableTree" class="table">
38 <tbody id="tableTreeBody"></tbody> 39 <tbody id="tableTreeBody"></tbody>
39 </table> 40 </table>
40 </div> 41 </div>
41 </template> 42 </template>
42 </polymer-element> 43 </polymer-element>
43 44
44 <script type="application/dart" src="class_tree.dart"></script> 45 <script type="application/dart" src="class_tree.dart"></script>
OLDNEW
« no previous file with comments | « no previous file | runtime/observatory/lib/src/elements/class_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698