| 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/iteration_helpers.html"> | |
| 9 <link rel="import" href="/tracing/base/unit.html"> | 8 <link rel="import" href="/tracing/base/unit.html"> |
| 9 <link rel="import" href="/tracing/base/utils.html"> |
| 10 <link rel="import" href="/tracing/model/event_set.html"> | 10 <link rel="import" href="/tracing/model/event_set.html"> |
| 11 <link rel="import" href="/tracing/ui/analysis/analysis_link.html"> | 11 <link rel="import" href="/tracing/ui/analysis/analysis_link.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/object_instance_view.html"> | 14 <link rel="import" href="/tracing/ui/analysis/object_instance_view.html"> |
| 15 <link rel="import" href="/tracing/ui/analysis/object_snapshot_view.html"> | 15 <link rel="import" href="/tracing/ui/analysis/object_snapshot_view.html"> |
| 16 <link rel="import" href="/tracing/ui/analysis/single_event_sub_view.html"> | 16 <link rel="import" href="/tracing/ui/analysis/single_event_sub_view.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-object-snapshot-sub-view'> | 19 <dom-module id='tr-ui-a-single-object-snapshot-sub-view'> |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 }); | 133 }); |
| 134 | 134 |
| 135 tr.ui.analysis.AnalysisSubView.register( | 135 tr.ui.analysis.AnalysisSubView.register( |
| 136 'tr-ui-a-single-object-snapshot-sub-view', | 136 'tr-ui-a-single-object-snapshot-sub-view', |
| 137 tr.model.ObjectSnapshot, | 137 tr.model.ObjectSnapshot, |
| 138 { | 138 { |
| 139 multi: false, | 139 multi: false, |
| 140 title: 'Object Snapshot', | 140 title: 'Object Snapshot', |
| 141 }); | 141 }); |
| 142 </script> | 142 </script> |
| OLD | NEW |