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

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

Issue 813173002: [ServiceWorker] Cache inspector out from flag, style & icon changes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed Experiment, added icon css Created 6 years 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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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();
OLDNEW
« no previous file with comments | « Source/devtools/front_end/resources/serviceWorkerCacheViews.css ('k') | Source/devtools/front_end/sdk/WorkerTargetManager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698