| Index: third_party/WebKit/Source/devtools/front_end/sdk/PaintProfiler.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/PaintProfiler.js b/third_party/WebKit/Source/devtools/front_end/sdk/PaintProfiler.js
|
| index b2e478c6f3f3417316909c40baf1dd0159327a92..6f07ce28b9ff5d22807624d4a3002508892f4994 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sdk/PaintProfiler.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sdk/PaintProfiler.js
|
| @@ -100,7 +100,8 @@ SDK.PaintProfilerSnapshot = class {
|
| * @param {function(!Array.<!Protocol.LayerTree.PaintProfile>=)} callback
|
| */
|
| profile(clipRect, callback) {
|
| - var wrappedCallback = InspectorBackend.wrapClientCallback(callback, 'Protocol.LayerTree.profileSnapshot(): ');
|
| + var wrappedCallback =
|
| + Protocol.inspectorBackend.wrapClientCallback(callback, 'Protocol.LayerTree.profileSnapshot(): ');
|
| this._target.layerTreeAgent().profileSnapshot(this._id, 5, 1, clipRect || undefined, wrappedCallback);
|
| }
|
|
|
|
|