Lines Matching full:track
7 base.require('tracks.track');
13 * A generic track that contains other tracks as its children.
16 var ContainerTrack = tracing.ui.define(tracing.tracks.Track);
18 __proto__: tracing.tracks.Track.prototype,
61 // The number of tracks that would be displayed if this track were visible.
97 addTrack_: function(track) {
98 track.headingWidth = this.headingWidth_;
99 track.viewport = this.viewport_;
100 track.categoryFilter = this.categoryFilter;
102 this.tracks_.push(track);
103 this.appendChild(track);
104 return track;
110 var track = this.tracks_[i];
111 if (isFirst && track.visible) {
112 track.classList.add('first-visible-child');
115 track.classList.remove('first-visible-child');