| 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="code_view.html"> | 2 <link rel="import" href="code_view.html"> |
| 3 <link rel="import" href="vm_view.html"> | |
| 4 <polymer-element name="service-view"> | 3 <polymer-element name="service-view"> |
| 5 <!-- This element explicitly manages the child elements to avoid setting | 4 <!-- This element explicitly manages the child elements to avoid setting |
| 6 an observable property on the old element to an invalid type. --> | 5 an observable property on the old element to an invalid type. --> |
| 7 </polymer-element> | 6 </polymer-element> |
| 8 | 7 |
| 9 <polymer-element name="trace-view"> | 8 <polymer-element name="trace-view"> |
| 10 <template> | 9 <template> |
| 11 <link rel="stylesheet" href="css/shared.css"> | 10 <link rel="stylesheet" href="css/shared.css"> |
| 12 | 11 |
| 13 <template if="{{ tracer != null }}"> | 12 <template if="{{ tracer != null }}"> |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 </div> | 89 </div> |
| 91 </template> | 90 </template> |
| 92 </div> | 91 </div> |
| 93 </template> | 92 </template> |
| 94 </curly-block> | 93 </curly-block> |
| 95 </template> | 94 </template> |
| 96 </template> | 95 </template> |
| 97 </polymer-element> | 96 </polymer-element> |
| 98 | 97 |
| 99 <script type="application/dart" src="service_view.dart"></script> | 98 <script type="application/dart" src="service_view.dart"></script> |
| OLD | NEW |