Index: Source/devtools/front_end/RemoteObject.js |
diff --git a/Source/devtools/front_end/RemoteObject.js b/Source/devtools/front_end/RemoteObject.js |
index 4779c0566e103de58af12555b88ffafb4a6bd0bc..916d4d9fd6ff82edd880cc70f5a420db3000fa61 100644 |
--- a/Source/devtools/front_end/RemoteObject.js |
+++ b/Source/devtools/front_end/RemoteObject.js |
@@ -390,7 +390,7 @@ WebInspector.RemoteObjectImpl.prototype = { |
var setPropertyValueFunction = "function(a, b) { this[a] = b; }"; |
var argv = [{ value: name }, this._toCallArgument(result)] |
- this._runtimeAgent.callFunctionOn(this._objectId, setPropertyValueFunction, argv, true, undefined, undefined, propertySetCallback.bind(this)); |
+ this._runtimeAgent.callFunctionOn(this._objectId, setPropertyValueFunction, argv, true, undefined, undefined, propertySetCallback); |
/** |
* @param {?Protocol.Error} error |