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

Unified Diff: Source/devtools/front_end/sdk/LayerTreeModel.js

Issue 732013002: DevTools: Remove unused frontend code (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove more stale code Created 6 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/devtools/devtools.gypi ('k') | Source/devtools/front_end/sources/ScriptFormatter.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/sdk/LayerTreeModel.js
diff --git a/Source/devtools/front_end/sdk/LayerTreeModel.js b/Source/devtools/front_end/sdk/LayerTreeModel.js
index f47b4cf3438bb518fdba2d7843291d7bcab49550..9a12ef80cc0b7ab3d8f60e8c1d81939b6667e83f 100644
--- a/Source/devtools/front_end/sdk/LayerTreeModel.js
+++ b/Source/devtools/front_end/sdk/LayerTreeModel.js
@@ -1131,31 +1131,6 @@ WebInspector.DeferredLayerTree.prototype = {
/**
* @constructor
- * @extends {WebInspector.DeferredLayerTree}
- * @param {?WebInspector.Target} target
- * @param {!Array.<!LayerTreeAgent.Layer>} layers
- */
-WebInspector.DeferredAgentLayerTree = function(target, layers)
-{
- WebInspector.DeferredLayerTree.call(this, target);
- this._layers = layers;
-}
-
-WebInspector.DeferredAgentLayerTree.prototype = {
- /**
- * @param {function(!WebInspector.LayerTreeBase)} callback
- */
- resolve: function(callback)
- {
- var result = new WebInspector.AgentLayerTree(this._target);
- result.setLayers(this._layers, callback.bind(null, result));
- },
-
- __proto__: WebInspector.DeferredLayerTree.prototype
-};
-
-/**
- * @constructor
* @implements {LayerTreeAgent.Dispatcher}
* @param {!WebInspector.LayerTreeModel} layerTreeModel
*/
« no previous file with comments | « Source/devtools/devtools.gypi ('k') | Source/devtools/front_end/sources/ScriptFormatter.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698