Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(369)

Side by Side Diff: Source/devtools/front_end/sdk/Target.js

Issue 1151263007: Devtools: Move animation to separate module (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright 2014 The Chromium Authors. All rights reserved. 2 * Copyright 2014 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 /** 7 /**
8 * @constructor 8 * @constructor
9 * @extends {Protocol.Agents} 9 * @extends {Protocol.Agents}
10 * @param {string} name 10 * @param {string} name
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 } 129 }
130 130
131 /** @type {?WebInspector.WorkerManager} */ 131 /** @type {?WebInspector.WorkerManager} */
132 this.workerManager = !this.isDedicatedWorker() ? new WebInspector.Worker Manager(this) : null; 132 this.workerManager = !this.isDedicatedWorker() ? new WebInspector.Worker Manager(this) : null;
133 /** @type {!WebInspector.CPUProfilerModel} */ 133 /** @type {!WebInspector.CPUProfilerModel} */
134 this.cpuProfilerModel = new WebInspector.CPUProfilerModel(this); 134 this.cpuProfilerModel = new WebInspector.CPUProfilerModel(this);
135 /** @type {!WebInspector.HeapProfilerModel} */ 135 /** @type {!WebInspector.HeapProfilerModel} */
136 this.heapProfilerModel = new WebInspector.HeapProfilerModel(this); 136 this.heapProfilerModel = new WebInspector.HeapProfilerModel(this);
137 /** @type {!WebInspector.LayerTreeModel} */ 137 /** @type {!WebInspector.LayerTreeModel} */
138 this.layerTreeModel = new WebInspector.LayerTreeModel(this); 138 this.layerTreeModel = new WebInspector.LayerTreeModel(this);
139 /** @type {!WebInspector.AnimationModel} */
140 this.animationModel = new WebInspector.AnimationModel(this);
141 139
142 this.tracingManager = new WebInspector.TracingManager(this); 140 this.tracingManager = new WebInspector.TracingManager(this);
143 141
144 if (this.isPage() && (Runtime.experiments.isEnabled("serviceWorkersInPag eFrontend") || Runtime.experiments.isEnabled("serviceWorkersInResources"))) 142 if (this.isPage() && (Runtime.experiments.isEnabled("serviceWorkersInPag eFrontend") || Runtime.experiments.isEnabled("serviceWorkersInResources")))
145 this.serviceWorkerManager = new WebInspector.ServiceWorkerManager(th is); 143 this.serviceWorkerManager = new WebInspector.ServiceWorkerManager(th is);
146 144
147 if (callback) 145 if (callback)
148 callback(this); 146 callback(this);
149 }, 147 },
150 148
(...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after
607 /** 605 /**
608 * @param {!WebInspector.Target} target 606 * @param {!WebInspector.Target} target
609 */ 607 */
610 targetRemoved: function(target) { }, 608 targetRemoved: function(target) { },
611 } 609 }
612 610
613 /** 611 /**
614 * @type {!WebInspector.TargetManager} 612 * @type {!WebInspector.TargetManager}
615 */ 613 */
616 WebInspector.targetManager = new WebInspector.TargetManager(); 614 WebInspector.targetManager = new WebInspector.TargetManager();
OLDNEW
« no previous file with comments | « Source/devtools/front_end/sdk/AnimationModel.js ('k') | Source/devtools/front_end/sdk/module.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698