| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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(); |
| OLD | NEW |