| Index: Source/bindings/v8/V8Callback.cpp
|
| diff --git a/Source/bindings/v8/V8Callback.cpp b/Source/bindings/v8/V8Callback.cpp
|
| index 33ba790616501c4e57f787523a8ebf25074bb26a..8e4dcfe33aa435bd116f7d966e8c4c5d9a3aa438 100644
|
| --- a/Source/bindings/v8/V8Callback.cpp
|
| +++ b/Source/bindings/v8/V8Callback.cpp
|
| @@ -59,7 +59,7 @@ bool invokeCallback(v8::Handle<v8::Object> callback, v8::Handle<v8::Object> this
|
| if (callbackFunction.IsEmpty())
|
| return false;
|
|
|
| - v8::Handle<v8::Value> result = ScriptController::callFunctionWithInstrumentation(scriptExecutionContext, callbackFunction, thisObject, argc, argv, isolate);
|
| + v8::Handle<v8::Value> result = ScriptController::callFunction(scriptExecutionContext, callbackFunction, thisObject, argc, argv, isolate);
|
|
|
| callbackReturnValue = !result.IsEmpty() && result->BooleanValue();
|
| return exceptionCatcher.HasCaught();
|
|
|