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

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

Issue 1113813002: [DevTools] Rename View to Widget. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased Created 5 years, 8 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/layers/LayersPanel.js
diff --git a/Source/devtools/front_end/layers/LayersPanel.js b/Source/devtools/front_end/layers/LayersPanel.js
index 3f66dba317b77cc8f0b4ece38a25d331fec04361..b377e2b654702af27d1ab916cb2a9ab6a438a073 100644
--- a/Source/devtools/front_end/layers/LayersPanel.js
+++ b/Source/devtools/front_end/layers/LayersPanel.js
@@ -46,15 +46,15 @@ WebInspector.LayersPanel = function()
this.panelSidebarElement().appendChild(this._layerTreeOutline.element);
this.setDefaultFocusedElement(this._layerTreeOutline.element);
- this._rightSplitView = new WebInspector.SplitView(false, true, "layerDetailsSplitViewState");
- this.splitView().setMainView(this._rightSplitView);
+ this._rightSplitWidget = new WebInspector.SplitWidget(false, true, "layerDetailsSplitViewState");
+ this.splitWidget().setMainWidget(this._rightSplitWidget);
this._layers3DView = new WebInspector.Layers3DView(this._layerViewHost);
- this._rightSplitView.setMainView(this._layers3DView);
+ this._rightSplitWidget.setMainWidget(this._layers3DView);
this._layers3DView.addEventListener(WebInspector.Layers3DView.Events.LayerSnapshotRequested, this._onSnapshotRequested, this);
this._tabbedPane = new WebInspector.TabbedPane();
- this._rightSplitView.setSidebarView(this._tabbedPane);
+ this._rightSplitWidget.setSidebarWidget(this._tabbedPane);
this._layerDetailsView = new WebInspector.LayerDetailsView(this._layerViewHost);
this._tabbedPane.appendTab(WebInspector.LayersPanel.DetailsViewTabs.Details, WebInspector.UIString("Details"), this._layerDetailsView);
« no previous file with comments | « Source/devtools/front_end/layers/LayerPaintProfilerView.js ('k') | Source/devtools/front_end/main/AdvancedApp.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698