OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <!-- | 2 <!-- |
3 Copyright (c) 2015 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2015 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/tracks/container_track.html"> | 8 <link rel="import" href="/tracing/ui/tracks/container_track.html"> |
9 <link rel="import" href="/tracing/ui/tracks/power_series_track.html"> | 9 <link rel="import" href="/tracing/ui/tracks/power_series_track.html"> |
10 <link rel="import" href="/tracing/ui/tracks/spacing_track.html"> | 10 <link rel="import" href="/tracing/ui/tracks/spacing_track.html"> |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 } | 78 } |
79 }, | 79 }, |
80 | 80 |
81 updateContents_: function() { | 81 updateContents_: function() { |
82 this.clearTracks_(); | 82 this.clearTracks_(); |
83 this.appendPowerSeriesTrack_(); | 83 this.appendPowerSeriesTrack_(); |
84 } | 84 } |
85 }; | 85 }; |
86 | 86 |
87 return { | 87 return { |
88 DeviceTrack: DeviceTrack | 88 DeviceTrack, |
89 }; | 89 }; |
90 }); | 90 }); |
91 </script> | 91 </script> |
OLD | NEW |