| 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/ui/base/draw_helpers.html"> | 9 <link rel="import" href="/tracing/ui/base/draw_helpers.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/alert_track.html"> | 11 <link rel="import" href="/tracing/ui/tracks/alert_track.html"> |
| 12 <link rel="import" href="/tracing/ui/tracks/container_track.html"> | 12 <link rel="import" href="/tracing/ui/tracks/container_track.html"> |
| 13 <link rel="import" href="/tracing/ui/tracks/cpu_usage_track.html"> | 13 <link rel="import" href="/tracing/ui/tracks/cpu_usage_track.html"> |
| 14 <link rel="import" href="/tracing/ui/tracks/device_track.html"> | 14 <link rel="import" href="/tracing/ui/tracks/device_track.html"> |
| 15 <link rel="import" href="/tracing/ui/tracks/global_memory_dump_track.html"> | 15 <link rel="import" href="/tracing/ui/tracks/global_memory_dump_track.html"> |
| 16 <link rel="import" href="/tracing/ui/tracks/interaction_track.html"> | 16 <link rel="import" href="/tracing/ui/tracks/interaction_track.html"> |
| 17 <link rel="import" href="/tracing/ui/tracks/kernel_track.html"> | 17 <link rel="import" href="/tracing/ui/tracks/kernel_track.html"> |
| 18 <link rel="import" href="/tracing/ui/tracks/memory_track.html"> | 18 <link rel="import" href="/tracing/ui/tracks/memory_track.html"> |
| 19 <link rel="import" href="/tracing/ui/tracks/process_track.html"> | 19 <link rel="import" href="/tracing/ui/tracks/process_track.html"> |
| 20 | 20 |
| 21 <style> | 21 <style> |
| 22 .model-track { | 22 .model-track { |
| 23 -webkit-box-flex: 1; | 23 flex-grow: 1; |
| 24 } | 24 } |
| 25 </style> | 25 </style> |
| 26 | 26 |
| 27 <script> | 27 <script> |
| 28 'use strict'; | 28 'use strict'; |
| 29 | 29 |
| 30 tr.exportTo('tr.ui.tracks', function() { | 30 tr.exportTo('tr.ui.tracks', function() { |
| 31 const SelectionState = tr.model.SelectionState; | 31 const SelectionState = tr.model.SelectionState; |
| 32 const ColorScheme = tr.b.ColorScheme; | 32 const ColorScheme = tr.b.ColorScheme; |
| 33 const EventPresenter = tr.ui.b.EventPresenter; | 33 const EventPresenter = tr.ui.b.EventPresenter; |
| (...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 522 tr.ui.tracks.ContainerTrack.prototype.addClosestEventToSelection. | 522 tr.ui.tracks.ContainerTrack.prototype.addClosestEventToSelection. |
| 523 apply(this, arguments); | 523 apply(this, arguments); |
| 524 } | 524 } |
| 525 }; | 525 }; |
| 526 | 526 |
| 527 return { | 527 return { |
| 528 ModelTrack, | 528 ModelTrack, |
| 529 }; | 529 }; |
| 530 }); | 530 }); |
| 531 </script> | 531 </script> |
| OLD | NEW |