HomeSort by relevance Sort by last modified time
    Searched full:timeline (Results 1 - 25 of 189) sorted by null

1 2 3 4 5 6 7 8

  /external/chromium/chrome/browser/resources/gpu_internals/
timeline_view.css 6 .timeline-view {
13 .timeline-view > .timeline {
19 .timeline-view > .timeline > .timeline {
23 .timeline-view .summary-container {
31 .timeline-view .selection {
35 .timeline-view .selection ul {
timeline.css 6 .timeline {
10 .timeline-drag-box {
17 .timeline-thread-track {
24 .timeline-thread-track:not(:first-child) {
28 .timeline-slice-track {
39 .timeline-slice-track-title {
46 .timeline-slice-track-canvas-container {
51 .timeline-slice-track-canvas {
timeline_test.html 10 <link rel="stylesheet" href="timeline.css">
18 <script src="timeline.js"></script>
34 var timeline;
39 timeline = new gpu.Timeline();
40 timeline.model = model;
41 sandbox.appendChild(timeline);
timeline_view.js 8 * gpu.Timeline component.
48 this.className = 'timeline-view';
51 this.timelineContainer_.className = 'timeline-container';
70 // remove old timeline
73 // create new timeline if needed
75 this.timeline_ = new gpu.Timeline();
89 var timeline = this.timeline_;
90 var selection = timeline.selection;
93 outputDiv.textContent = timeline.keyHelp;
timeline.js 9 * set of TimelineTracks, one per subrow in the thread. The Timeline class
13 * Visually, the Timeline produces (prettier) visualizations like the following:
23 * within the timeline. It is a simple transform:
26 * The timeline code tries to avoid directly accessing this transform,
118 Timeline = cr.ui.define('div');
120 Timeline.prototype = {
126 this.classList.add('timeline');
139 this.dragBox_.className = 'timeline-drag-box';
142 // The following code uses a setInterval to monitor the timeline control
417 * The TimelineModel being viewed by the timeline
    [all...]
timeline_track.js 52 * Generic base class for timeline tracks
59 this.className = 'timeline-thread-track';
159 * Creates a new timeline track div element
169 this.className = 'timeline-slice-track';
173 this.titleDiv_.className = 'timeline-slice-track-title';
177 this.canvasContainer_.className = 'timeline-slice-track-canvas-container';
180 this.canvas_.className = 'timeline-slice-track-canvas';