| Index: Source/devtools/front_end/LayersPanel.js
|
| diff --git a/Source/devtools/front_end/LayersPanel.js b/Source/devtools/front_end/LayersPanel.js
|
| index 81329f9e4319e14a403fee81c9151163bc53550c..9b1c5a54f6aa735e1c1aea69015f98de81dba3fb 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
|
| @@ -49,6 +50,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);
|
| this._model.requestLayers();
|
| }
|
|
|
|
|