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