| 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"> | 17 |
| 18 <polymer-element name="service-view" extends="observatory-element"> | 18 <polymer-element name="service-view" extends="observatory-element"> |
| 19 <!-- This element explicitly manages the child elements to avoid setting | 19 <!-- This element explicitly manages the child elements to avoid setting |
| 20 an observable property on the old element to an invalid type. --> | 20 an observable property on the old element to an invalid type. --> |
| 21 </polymer-element> | 21 </polymer-element> |
| 22 | 22 |
| 23 <polymer-element name="trace-view" extends="observatory-element"> | 23 <polymer-element name="trace-view" extends="observatory-element"> |
| 24 <template> | 24 <template> |
| 25 <link rel="stylesheet" href="css/shared.css"> | 25 <link rel="stylesheet" href="css/shared.css"> |
| 26 | 26 |
| 27 <template if="{{ tracer != null }}"> | 27 <template if="{{ tracer != null }}"> |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 </div> | 104 </div> |
| 105 </template> | 105 </template> |
| 106 </div> | 106 </div> |
| 107 </template> | 107 </template> |
| 108 </curly-block> | 108 </curly-block> |
| 109 </template> | 109 </template> |
| 110 </template> | 110 </template> |
| 111 </polymer-element> | 111 </polymer-element> |
| 112 | 112 |
| 113 <script type="application/dart" src="service_view.dart"></script> | 113 <script type="application/dart" src="service_view.dart"></script> |
| OLD | NEW |