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

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: nuked LayerTreeModel.js from inspector.html 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
« no previous file with comments | « Source/devtools/front_end/Layers3DView.js ('k') | Source/devtools/front_end/layersPanel.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
}
« no previous file with comments | « Source/devtools/front_end/Layers3DView.js ('k') | Source/devtools/front_end/layersPanel.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698