| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (c) 2013 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2013 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/base/base.html"> | 8 <link rel="import" href="/tracing/base/base.html"> |
| 9 <link rel="import" href="/tracing/base/iteration_helpers.html"> | |
| 10 <link rel="import" href="/tracing/base/unit.html"> | 9 <link rel="import" href="/tracing/base/unit.html"> |
| 10 <link rel="import" href="/tracing/base/utils.html"> |
| 11 <link rel="import" href="/tracing/model/event_set.html"> | 11 <link rel="import" href="/tracing/model/event_set.html"> |
| 12 <link rel="import" href="/tracing/ui/analysis/analysis_sub_view.html"> | 12 <link rel="import" href="/tracing/ui/analysis/analysis_sub_view.html"> |
| 13 <link rel="import" href="/tracing/ui/analysis/generic_object_view.html"> | 13 <link rel="import" href="/tracing/ui/analysis/generic_object_view.html"> |
| 14 <link rel="import" href="/tracing/ui/analysis/stack_frame.html"> | 14 <link rel="import" href="/tracing/ui/analysis/stack_frame.html"> |
| 15 <link rel="import" href="/tracing/ui/base/table.html"> | 15 <link rel="import" href="/tracing/ui/base/table.html"> |
| 16 <link rel="import" href="/tracing/ui/base/ui.html"> | 16 <link rel="import" href="/tracing/ui/base/ui.html"> |
| 17 <link rel="import" href="/tracing/value/ui/scalar_span.html"> | 17 <link rel="import" href="/tracing/value/ui/scalar_span.html"> |
| 18 | 18 |
| 19 <dom-module id='tr-ui-a-single-event-sub-view'> | 19 <dom-module id='tr-ui-a-single-event-sub-view'> |
| 20 <template> | 20 <template> |
| (...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 | 338 |
| 339 const customizeRowsEvent = new tr.b.Event('customize-rows'); | 339 const customizeRowsEvent = new tr.b.Event('customize-rows'); |
| 340 customizeRowsEvent.rows = rows; | 340 customizeRowsEvent.rows = rows; |
| 341 this.dispatchEvent(customizeRowsEvent); | 341 this.dispatchEvent(customizeRowsEvent); |
| 342 | 342 |
| 343 this.$.table.tableRows = rows; | 343 this.$.table.tableRows = rows; |
| 344 this.$.table.rebuild(); | 344 this.$.table.rebuild(); |
| 345 } | 345 } |
| 346 }); | 346 }); |
| 347 </script> | 347 </script> |
| OLD | NEW |