| Index: third_party/WebKit/Source/devtools/front_end/sdk/InspectorBackend.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/InspectorBackend.js b/third_party/WebKit/Source/devtools/front_end/sdk/InspectorBackend.js
|
| index 07f58c2dadba0e522576cf66039fafabee6d44dd..158c1431216a2e0ee20a3c2bf65684ca388391e8 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sdk/InspectorBackend.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sdk/InspectorBackend.js
|
| @@ -346,7 +346,7 @@ InspectorBackendClass.Connection.prototype = {
|
| console.log("time-stats: " + callback.methodName + " = " + (processingStartTime - callback.sendRequestTime) + " + " + (Date.now() - processingStartTime));
|
|
|
| if (this._scripts && !this._pendingResponsesCount)
|
| - this.runAfterPendingDispatches();
|
| + this.deprecatedRunAfterPendingDispatches();
|
| return;
|
| } else {
|
| var method = messageObject.method.split(".");
|
| @@ -376,7 +376,7 @@ InspectorBackendClass.Connection.prototype = {
|
| /**
|
| * @param {function()=} script
|
| */
|
| - runAfterPendingDispatches: function(script)
|
| + deprecatedRunAfterPendingDispatches: function(script)
|
| {
|
| if (!this._scripts)
|
| this._scripts = [];
|
| @@ -389,7 +389,7 @@ InspectorBackendClass.Connection.prototype = {
|
| if (!this._pendingResponsesCount)
|
| this._executeAfterPendingDispatches();
|
| else
|
| - this.runAfterPendingDispatches();
|
| + this.deprecatedRunAfterPendingDispatches();
|
| }.bind(this), 0);
|
| },
|
|
|
|
|