| 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/sorted_array_utils.html"> | 8 <link rel="import" href="/tracing/base/math/sorted_array_utils.html"> |
| 9 <link rel="import" href="/tracing/model/model_settings.html"> | 9 <link rel="import" href="/tracing/model/model_settings.html"> |
| 10 <link rel="import" href="/tracing/ui/base/ui.html"> | 10 <link rel="import" href="/tracing/ui/base/ui.html"> |
| 11 <link rel="import" href="/tracing/ui/tracks/container_track.html"> | 11 <link rel="import" href="/tracing/ui/tracks/container_track.html"> |
| 12 | 12 |
| 13 <script> | 13 <script> |
| 14 'use strict'; | 14 'use strict'; |
| 15 | 15 |
| 16 tr.exportTo('tr.ui.tracks', function() { | 16 tr.exportTo('tr.ui.tracks', function() { |
| 17 /** | 17 /** |
| 18 * A track that displays a group of objects in multiple rows. | 18 * A track that displays a group of objects in multiple rows. |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 } | 209 } |
| 210 return true; | 210 return true; |
| 211 } | 211 } |
| 212 }; | 212 }; |
| 213 | 213 |
| 214 return { | 214 return { |
| 215 MultiRowTrack, | 215 MultiRowTrack, |
| 216 }; | 216 }; |
| 217 }); | 217 }); |
| 218 </script> | 218 </script> |
| OLD | NEW |