| Index: third_party/WebKit/Source/devtools/front_end/sdk/RemoteObject.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/RemoteObject.js b/third_party/WebKit/Source/devtools/front_end/sdk/RemoteObject.js
|
| index 7ef304958172e253b1d22a5ce0062aca2488c932..6b5a6a1e5b4c51468c11c191ae95e1c8379410a7 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sdk/RemoteObject.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sdk/RemoteObject.js
|
| @@ -768,7 +768,7 @@ WebInspector.RemoteObjectImpl.prototype = {
|
| var setPropertyValueFunction = "function(a, b) { this[a] = b; }";
|
|
|
| var argv = [name, WebInspector.RemoteObject.toCallArgument(result)];
|
| - this._runtimeAgent.callFunctionOn(this._objectId, setPropertyValueFunction, argv, true, undefined, undefined, propertySetCallback);
|
| + this._runtimeAgent.callFunctionOn(this._objectId, setPropertyValueFunction, argv, true, undefined, undefined, undefined, propertySetCallback);
|
|
|
| /**
|
| * @param {?Protocol.Error} error
|
| @@ -798,7 +798,7 @@ WebInspector.RemoteObjectImpl.prototype = {
|
| }
|
|
|
| var deletePropertyFunction = "function(a) { delete this[a]; return !(a in this); }";
|
| - this._runtimeAgent.callFunctionOn(this._objectId, deletePropertyFunction, [name], true, undefined, undefined, deletePropertyCallback);
|
| + this._runtimeAgent.callFunctionOn(this._objectId, deletePropertyFunction, [name], true, undefined, undefined, undefined, deletePropertyCallback);
|
|
|
| /**
|
| * @param {?Protocol.Error} error
|
| @@ -842,7 +842,7 @@ WebInspector.RemoteObjectImpl.prototype = {
|
| callback(this.target().runtimeModel.createRemoteObject(result), wasThrown);
|
| }
|
|
|
| - this._runtimeAgent.callFunctionOn(this._objectId, functionDeclaration.toString(), args, true, undefined, undefined, mycallback.bind(this));
|
| + this._runtimeAgent.callFunctionOn(this._objectId, functionDeclaration.toString(), args, true, undefined, undefined, undefined, mycallback.bind(this));
|
| },
|
|
|
| /**
|
| @@ -863,7 +863,7 @@ WebInspector.RemoteObjectImpl.prototype = {
|
| callback((error || wasThrown) ? null : result.value);
|
| }
|
|
|
| - this._runtimeAgent.callFunctionOn(this._objectId, functionDeclaration.toString(), args, true, true, false, mycallback);
|
| + this._runtimeAgent.callFunctionOn(this._objectId, functionDeclaration.toString(), args, true, true, false, undefined, mycallback);
|
| },
|
|
|
| release: function()
|
|
|