| 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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 | 170 |
| 171 /** @type {!WebInspector.IndexedDBModel} */ | 171 /** @type {!WebInspector.IndexedDBModel} */ |
| 172 this.indexedDBModel = new WebInspector.IndexedDBModel(this); | 172 this.indexedDBModel = new WebInspector.IndexedDBModel(this); |
| 173 | 173 |
| 174 /** @type {!WebInspector.LayerTreeModel} */ | 174 /** @type {!WebInspector.LayerTreeModel} */ |
| 175 this.layerTreeModel = new WebInspector.LayerTreeModel(this); | 175 this.layerTreeModel = new WebInspector.LayerTreeModel(this); |
| 176 | 176 |
| 177 /** @type {!WebInspector.AnimationModel} */ | 177 /** @type {!WebInspector.AnimationModel} */ |
| 178 this.animationModel = new WebInspector.AnimationModel(this); | 178 this.animationModel = new WebInspector.AnimationModel(this); |
| 179 | 179 |
| 180 if (WebInspector.isWorkerFrontend() && this.isWorkerTarget() && Runtime.
experiments.isEnabled("serviceWorkerCacheInspection")) { | 180 if (WebInspector.isWorkerFrontend() && this.isWorkerTarget()) { |
| 181 /** @type {!WebInspector.ServiceWorkerCacheModel} */ | 181 /** @type {!WebInspector.ServiceWorkerCacheModel} */ |
| 182 this.serviceWorkerCacheModel = new WebInspector.ServiceWorkerCacheMo
del(this); | 182 this.serviceWorkerCacheModel = new WebInspector.ServiceWorkerCacheMo
del(this); |
| 183 } | 183 } |
| 184 | 184 |
| 185 if (callback) | 185 if (callback) |
| 186 callback(this); | 186 callback(this); |
| 187 }, | 187 }, |
| 188 | 188 |
| 189 /** | 189 /** |
| 190 * @override | 190 * @override |
| (...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 554 /** | 554 /** |
| 555 * @param {!WebInspector.Target} target | 555 * @param {!WebInspector.Target} target |
| 556 */ | 556 */ |
| 557 targetRemoved: function(target) { }, | 557 targetRemoved: function(target) { }, |
| 558 } | 558 } |
| 559 | 559 |
| 560 /** | 560 /** |
| 561 * @type {!WebInspector.TargetManager} | 561 * @type {!WebInspector.TargetManager} |
| 562 */ | 562 */ |
| 563 WebInspector.targetManager = new WebInspector.TargetManager(); | 563 WebInspector.targetManager = new WebInspector.TargetManager(); |
| OLD | NEW |