OLD | NEW |
1 <link rel="import" href="../../../../packages/polymer/polymer.html"> | 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> |
2 <link rel="import" href="action_link.html"> | 2 <link rel="import" href="action_link.html"> |
3 <link rel="import" href="cpu_profile.html"> | 3 <link rel="import" href="cpu_profile.html"> |
4 <link rel="import" href="curly_block.html"> | |
5 <link rel="import" href="eval_box.html"> | 4 <link rel="import" href="eval_box.html"> |
6 <link rel="import" href="eval_link.html"> | 5 <link rel="import" href="eval_link.html"> |
7 <link rel="import" href="field_ref.html"> | 6 <link rel="import" href="field_ref.html"> |
8 <link rel="import" href="function_ref.html"> | 7 <link rel="import" href="function_ref.html"> |
9 <link rel="import" href="instance_ref.html"> | 8 <link rel="import" href="instance_ref.html"> |
10 <link rel="import" href="library_ref.html"> | 9 <link rel="import" href="library_ref.html"> |
11 <link rel="import" href="nav_bar.html"> | |
12 <link rel="import" href="observatory_element.html"> | 10 <link rel="import" href="observatory_element.html"> |
13 <link rel="import" href="script_inset.html"> | 11 <link rel="import" href="script_inset.html"> |
14 <link rel="import" href="script_ref.html"> | |
15 <link rel="import" href="view_footer.html"> | |
16 | 12 |
17 <polymer-element name="class-view" extends="observatory-element"> | 13 <polymer-element name="class-view" extends="observatory-element"> |
18 <template> | 14 <template> |
19 <link rel="stylesheet" href="css/shared.css"> | 15 <link rel="stylesheet" href="css/shared.css"> |
20 <nav-bar> | 16 <nav-bar> |
21 <top-nav-menu></top-nav-menu> | 17 <top-nav-menu></top-nav-menu> |
22 <vm-nav-menu vm="{{ cls.isolate.vm }}"></vm-nav-menu> | 18 <vm-nav-menu vm="{{ cls.isolate.vm }}"></vm-nav-menu> |
23 <isolate-nav-menu isolate="{{ cls.isolate }}"></isolate-nav-menu> | 19 <isolate-nav-menu isolate="{{ cls.isolate }}"></isolate-nav-menu> |
24 <library-nav-menu library="{{ cls.library }}"></library-nav-menu> | 20 <library-nav-menu library="{{ cls.library }}"></library-nav-menu> |
25 <class-nav-menu cls="{{ cls }}" last="{{ true }}"></class-nav-menu> | 21 <class-nav-menu cls="{{ cls }}" last="{{ true }}"></class-nav-menu> |
26 <nav-refresh callback="{{ refreshAllocationProfile }}" label="Refresh Allo
cation Profile"></nav-refresh> | 22 <nav-refresh callback="{{ refreshAllocationProfile }}" label="Refresh Allo
cation Profile"></nav-refresh> |
27 <nav-refresh callback="{{ refresh }}"></nav-refresh> | 23 <nav-refresh callback="{{ refresh }}"></nav-refresh> |
| 24 <nav-notify notifications="{{ app.notifications }}"></nav-notify> |
28 </nav-bar> | 25 </nav-bar> |
29 | 26 |
30 <div class="content"> | 27 <div class="content"> |
31 <h1> | 28 <h1> |
32 <template if="{{ cls.isAbstract }}"> | 29 <template if="{{ cls.isAbstract }}"> |
33 abstract | 30 abstract |
34 </template> | 31 </template> |
35 <template if="{{ cls.isPatch }}"> | 32 <template if="{{ cls.isPatch }}"> |
36 patch | 33 patch |
37 </template> | 34 </template> |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
279 <hr> | 276 <hr> |
280 <source-inset location="{{ cls.location }}"> | 277 <source-inset location="{{ cls.location }}"> |
281 </source-inset> | 278 </source-inset> |
282 </div> | 279 </div> |
283 | 280 |
284 <view-footer></view-footer> | 281 <view-footer></view-footer> |
285 </template> | 282 </template> |
286 </polymer-element> | 283 </polymer-element> |
287 | 284 |
288 <script type="application/dart" src="class_view.dart"></script> | 285 <script type="application/dart" src="class_view.dart"></script> |
OLD | NEW |