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="class_view.html"> | 2 <link rel="import" href="class_view.html"> |
3 <link rel="import" href="code_view.html"> | 3 <link rel="import" href="code_view.html"> |
4 <link rel="import" href="context_view.html"> | 4 <link rel="import" href="context_view.html"> |
5 <link rel="import" href="cpu_profile.html"> | 5 <link rel="import" href="cpu_profile.html"> |
6 <link rel="import" href="error_view.html"> | 6 <link rel="import" href="error_view.html"> |
7 <link rel="import" href="field_view.html"> | 7 <link rel="import" href="field_view.html"> |
8 <link rel="import" href="function_view.html"> | 8 <link rel="import" href="function_view.html"> |
9 <link rel="import" href="heap_map.html"> | 9 <link rel="import" href="heap_map.html"> |
10 <link rel="import" href="heap_profile.html"> | 10 <link rel="import" href="heap_profile.html"> |
11 <link rel="import" href="instance_view.html"> | 11 <link rel="import" href="instance_view.html"> |
12 <link rel="import" href="library_view.html"> | 12 <link rel="import" href="library_view.html"> |
13 <link rel="import" href="heap_snapshot.html"> | 13 <link rel="import" href="heap_snapshot.html"> |
14 <link rel="import" href="observatory_element.html"> | 14 <link rel="import" href="observatory_element.html"> |
15 <link rel="import" href="script_view.html"> | 15 <link rel="import" href="script_view.html"> |
16 <link rel="import" href="vm_view.html"> | 16 <link rel="import" href="vm_view.html"> |
17 <link rel="import" href="view_footer.html"> | |
18 <polymer-element name="service-view" extends="observatory-element"> | 17 <polymer-element name="service-view" extends="observatory-element"> |
19 <!-- This element explicitly manages the child elements to avoid setting | 18 <!-- This element explicitly manages the child elements to avoid setting |
20 an observable property on the old element to an invalid type. --> | 19 an observable property on the old element to an invalid type. --> |
21 </polymer-element> | 20 </polymer-element> |
22 | 21 |
23 <polymer-element name="trace-view" extends="observatory-element"> | 22 <polymer-element name="trace-view" extends="observatory-element"> |
24 <template> | 23 <template> |
25 <link rel="stylesheet" href="css/shared.css"> | 24 <link rel="stylesheet" href="css/shared.css"> |
26 | 25 |
27 <template if="{{ tracer != null }}"> | 26 <template if="{{ tracer != null }}"> |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 </div> | 103 </div> |
105 </template> | 104 </template> |
106 </div> | 105 </div> |
107 </template> | 106 </template> |
108 </curly-block> | 107 </curly-block> |
109 </template> | 108 </template> |
110 </template> | 109 </template> |
111 </polymer-element> | 110 </polymer-element> |
112 | 111 |
113 <script type="application/dart" src="service_view.dart"></script> | 112 <script type="application/dart" src="service_view.dart"></script> |
OLD | NEW |