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

Unified Diff: Source/devtools/front_end/layers/LayerPaintProfilerView.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
« no previous file with comments | « Source/devtools/front_end/inspectorCommon.css ('k') | Source/devtools/front_end/layers/LayersPanel.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/layers/LayerPaintProfilerView.js
diff --git a/Source/devtools/front_end/layers/LayerPaintProfilerView.js b/Source/devtools/front_end/layers/LayerPaintProfilerView.js
index c7676f8caa36a95009081f8e88e0b4e303a5744a..ccd39f748017cd19e23bdc3ebaea9976b9729b80 100644
--- a/Source/devtools/front_end/layers/LayerPaintProfilerView.js
+++ b/Source/devtools/front_end/layers/LayerPaintProfilerView.js
@@ -5,17 +5,17 @@
/**
* @constructor
* @param {function(!WebInspector.Layer, string=)} showImageForLayerCallback
- * @extends {WebInspector.SplitView}
+ * @extends {WebInspector.SplitWidget}
*/
WebInspector.LayerPaintProfilerView = function(showImageForLayerCallback)
{
- WebInspector.SplitView.call(this, true, false);
+ WebInspector.SplitWidget.call(this, true, false);
this._showImageForLayerCallback = showImageForLayerCallback;
this._logTreeView = new WebInspector.PaintProfilerCommandLogView();
- this.setSidebarView(this._logTreeView);
+ this.setSidebarWidget(this._logTreeView);
this._paintProfilerView = new WebInspector.PaintProfilerView(this._showImage.bind(this));
- this.setMainView(this._paintProfilerView);
+ this.setMainWidget(this._paintProfilerView);
this._paintProfilerView.addEventListener(WebInspector.PaintProfilerView.Events.WindowChanged, this._onWindowChanged, this);
}
@@ -66,6 +66,6 @@ WebInspector.LayerPaintProfilerView.prototype = {
this._showImageForLayerCallback(this._layer, imageURL);
},
- __proto__: WebInspector.SplitView.prototype
+ __proto__: WebInspector.SplitWidget.prototype
};
« no previous file with comments | « Source/devtools/front_end/inspectorCommon.css ('k') | Source/devtools/front_end/layers/LayersPanel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698