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

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

Issue 620783002: Devtools Animations: Basic animation inspection & control in Styles pane (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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
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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 159
160 /** @type {!WebInspector.HeapProfilerModel} */ 160 /** @type {!WebInspector.HeapProfilerModel} */
161 this.heapProfilerModel = new WebInspector.HeapProfilerModel(this); 161 this.heapProfilerModel = new WebInspector.HeapProfilerModel(this);
162 162
163 /** @type {!WebInspector.IndexedDBModel} */ 163 /** @type {!WebInspector.IndexedDBModel} */
164 this.indexedDBModel = new WebInspector.IndexedDBModel(this); 164 this.indexedDBModel = new WebInspector.IndexedDBModel(this);
165 165
166 /** @type {!WebInspector.LayerTreeModel} */ 166 /** @type {!WebInspector.LayerTreeModel} */
167 this.layerTreeModel = new WebInspector.LayerTreeModel(this); 167 this.layerTreeModel = new WebInspector.LayerTreeModel(this);
168 168
169 /** @type {!WebInspector.AnimationModel} */
170 this.animationModel = new WebInspector.AnimationModel(this);
171
169 if (callback) 172 if (callback)
170 callback(this); 173 callback(this);
171 }, 174 },
172 175
173 /** 176 /**
174 * @override 177 * @override
175 * @param {string} domain 178 * @param {string} domain
176 * @param {!Object} dispatcher 179 * @param {!Object} dispatcher
177 */ 180 */
178 registerDispatcher: function(domain, dispatcher) 181 registerDispatcher: function(domain, dispatcher)
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
495 /** 498 /**
496 * @param {!WebInspector.Target} target 499 * @param {!WebInspector.Target} target
497 */ 500 */
498 targetRemoved: function(target) { }, 501 targetRemoved: function(target) { },
499 } 502 }
500 503
501 /** 504 /**
502 * @type {!WebInspector.TargetManager} 505 * @type {!WebInspector.TargetManager}
503 */ 506 */
504 WebInspector.targetManager = new WebInspector.TargetManager(); 507 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