| 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/math/range.html"> | 9 <link rel="import" href="/tracing/base/math/range.html"> |
| 11 <link rel="import" href="/tracing/base/math/statistics.html"> | 10 <link rel="import" href="/tracing/base/math/statistics.html"> |
| 12 <link rel="import" href="/tracing/base/unit.html"> | 11 <link rel="import" href="/tracing/base/unit.html"> |
| 12 <link rel="import" href="/tracing/base/utils.html"> |
| 13 <link rel="import" href="/tracing/model/event_set.html"> | 13 <link rel="import" href="/tracing/model/event_set.html"> |
| 14 <link rel="import" href="/tracing/ui/analysis/analysis_link.html"> | 14 <link rel="import" href="/tracing/ui/analysis/analysis_link.html"> |
| 15 <link rel="import" href="/tracing/ui/analysis/multi_event_summary.html"> | 15 <link rel="import" href="/tracing/ui/analysis/multi_event_summary.html"> |
| 16 <link rel="import" href="/tracing/ui/base/table.html"> | 16 <link rel="import" href="/tracing/ui/base/table.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-multi-event-summary-table'> | 19 <dom-module id='tr-ui-a-multi-event-summary-table'> |
| 20 <template> | 20 <template> |
| 21 <style> | 21 <style> |
| 22 :host { | 22 :host { |
| (...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 | 342 |
| 343 // TODO(selection bounds). | 343 // TODO(selection bounds). |
| 344 | 344 |
| 345 // TODO(sorting) | 345 // TODO(sorting) |
| 346 | 346 |
| 347 this.$.table.footerRows = footerRows; | 347 this.$.table.footerRows = footerRows; |
| 348 this.$.table.rebuild(); | 348 this.$.table.rebuild(); |
| 349 } | 349 } |
| 350 }); | 350 }); |
| 351 </script> | 351 </script> |
| OLD | NEW |