| 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/color_scheme.html"> | 8 <link rel="import" href="/tracing/base/color_scheme.html"> |
| 9 <link rel="import" href="/tracing/base/iteration_helpers.html"> | 9 <link rel="import" href="/tracing/base/iteration_helpers.html"> |
| 10 <link rel="import" href="/tracing/base/sorted_array_utils.html"> | 10 <link rel="import" href="/tracing/base/math/sorted_array_utils.html"> |
| 11 <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"> | 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/model/model.html"> | 14 <link rel="import" href="/tracing/model/model.html"> |
| 15 <link rel="import" href="/tracing/ui/analysis/analysis_link.html"> | 15 <link rel="import" href="/tracing/ui/analysis/analysis_link.html"> |
| 16 <link rel="import" href="/tracing/ui/analysis/analysis_sub_view.html"> | 16 <link rel="import" href="/tracing/ui/analysis/analysis_sub_view.html"> |
| 17 <link rel="import" href="/tracing/ui/analysis/generic_object_view.html"> | 17 <link rel="import" href="/tracing/ui/analysis/generic_object_view.html"> |
| 18 <link rel="import" href="/tracing/value/ui/scalar_span.html"> | 18 <link rel="import" href="/tracing/value/ui/scalar_span.html"> |
| 19 | 19 |
| 20 <dom-module id='tr-ui-a-single-thread-time-slice-sub-view'> | 20 <dom-module id='tr-ui-a-single-thread-time-slice-sub-view'> |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 }); | 177 }); |
| 178 | 178 |
| 179 tr.ui.analysis.AnalysisSubView.register( | 179 tr.ui.analysis.AnalysisSubView.register( |
| 180 'tr-ui-a-single-thread-time-slice-sub-view', | 180 'tr-ui-a-single-thread-time-slice-sub-view', |
| 181 tr.model.ThreadTimeSlice, | 181 tr.model.ThreadTimeSlice, |
| 182 { | 182 { |
| 183 multi: false, | 183 multi: false, |
| 184 title: 'Thread Timeslice', | 184 title: 'Thread Timeslice', |
| 185 }); | 185 }); |
| 186 </script> | 186 </script> |
| OLD | NEW |