| 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
|
| };
|
|
|
|
|