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

Unified Diff: Source/devtools/front_end/LayersPanel.js

Issue 22602002: DevTools: add 3D layer view to Layer panel (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: Source/devtools/front_end/LayersPanel.js
diff --git a/Source/devtools/front_end/LayersPanel.js b/Source/devtools/front_end/LayersPanel.js
index 2e522a3d10c93b10d2b8e63bf6c9b10c8f79ba91..2896296e517da0800b40f41eca1b23db11f91c1b 100644
--- a/Source/devtools/front_end/LayersPanel.js
+++ b/Source/devtools/front_end/LayersPanel.js
@@ -30,6 +30,7 @@
importScript("LayerTreeModel.js");
importScript("LayerTree.js");
+importScript("Layers3DView.js");
/**
* @constructor
@@ -48,6 +49,8 @@ WebInspector.LayersPanel = function()
this._layerTree = new WebInspector.LayerTree(this._model, this.sidebarTree);
this._layerDetailsSplitView = new WebInspector.SplitView(false, "layerDetailsSplitView");
this._layerDetailsSplitView.show(this.splitView.mainElement);
+ this._layers3DView = new WebInspector.Layers3DView(this._model);
+ this._layers3DView.show(this._layerDetailsSplitView.mainElement);
}
WebInspector.LayersPanel.prototype = {

Powered by Google App Engine
This is Rietveld 408576698