| Index: third_party/WebKit/Source/devtools/front_end/layers/LayerTreeModel.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/layers/LayerTreeModel.js b/third_party/WebKit/Source/devtools/front_end/layers/LayerTreeModel.js
|
| index 4ebe4da59c6eb6891621ca6f468a82ac9a678bfb..bd39caa127a6dee40f0c0bfc1b003cbb964198d0 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/layers/LayerTreeModel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/layers/LayerTreeModel.js
|
| @@ -437,7 +437,7 @@ WebInspector.AgentLayer.prototype = {
|
| return;
|
| }
|
|
|
| - var wrappedCallback = InspectorBackend.wrapClientCallback(callback, "LayerTreeAgent.reasonsForCompositingLayer(): ", undefined, []);
|
| + var wrappedCallback = Protocol.wrapClientCallback(callback, "LayerTreeAgent.reasonsForCompositingLayer(): ", undefined, []);
|
| this._target.layerTreeAgent().compositingReasons(this.id(), wrappedCallback);
|
| },
|
|
|
| @@ -473,7 +473,7 @@ WebInspector.AgentLayer.prototype = {
|
| return;
|
| }
|
|
|
| - var wrappedCallback = InspectorBackend.wrapClientCallback(callback, "LayerTreeAgent.makeSnapshot(): ", WebInspector.PaintProfilerSnapshot.bind(null, this._target));
|
| + var wrappedCallback = Protocol.wrapClientCallback(callback, "LayerTreeAgent.makeSnapshot(): ", WebInspector.PaintProfilerSnapshot.bind(null, this._target));
|
| this._target.layerTreeAgent().makeSnapshot(this.id(), wrappedCallback);
|
| },
|
|
|
|
|