| 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/ui/base/heading.html"> | 8 <link rel="import" href="/tracing/ui/base/heading.html"> |
| 9 <link rel="import" href="/tracing/ui/base/ui.html"> | 9 <link rel="import" href="/tracing/ui/base/ui.html"> |
| 10 <link rel="import" href="/tracing/ui/tracks/track.html"> | 10 <link rel="import" href="/tracing/ui/tracks/track.html"> |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 worldMaxDist); | 117 worldMaxDist); |
| 118 | 118 |
| 119 if (!snapshot) | 119 if (!snapshot) |
| 120 return; | 120 return; |
| 121 | 121 |
| 122 selection.push(snapshot); | 122 selection.push(snapshot); |
| 123 } | 123 } |
| 124 }; | 124 }; |
| 125 | 125 |
| 126 return { | 126 return { |
| 127 StackedBarsTrack: StackedBarsTrack | 127 StackedBarsTrack, |
| 128 }; | 128 }; |
| 129 }); | 129 }); |
| 130 </script> | 130 </script> |
| OLD | NEW |