| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (c) 2015 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2015 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. | 5 found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 | 7 |
| 8 <link rel="import" href="/tracing/ui/analysis/analysis_sub_view.html"> | 8 <link rel="import" href="/tracing/ui/analysis/analysis_sub_view.html"> |
| 9 <link rel="import" href="/tracing/ui/analysis/single_event_sub_view.html"> | 9 <link rel="import" href="/tracing/ui/analysis/single_event_sub_view.html"> |
| 10 <link rel="import" href="/tracing/ui/base/dom_helpers.html"> | 10 <link rel="import" href="/tracing/ui/base/dom_helpers.html"> |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 }); | 52 }); |
| 53 }); | 53 }); |
| 54 | 54 |
| 55 rows.push({ | 55 rows.push({ |
| 56 name: 'Alerts', value: '', | 56 name: 'Alerts', value: '', |
| 57 isExpanded: true, subRows: eventSubRows | 57 isExpanded: true, subRows: eventSubRows |
| 58 }); | 58 }); |
| 59 } | 59 } |
| 60 }.bind(this); | 60 }.bind(this); |
| 61 | 61 |
| 62 this.appendChild(realView); | 62 Polymer.dom(this).appendChild(realView); |
| 63 realView.setSelectionWithoutErrorChecks(selection); | 63 realView.setSelectionWithoutErrorChecks(selection); |
| 64 } | 64 } |
| 65 }); | 65 }); |
| 66 </script> | 66 </script> |
| OLD | NEW |