| 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 = {
|
|
|