Index: Source/bindings/v8/V8Binding.cpp |
diff --git a/Source/bindings/v8/V8Binding.cpp b/Source/bindings/v8/V8Binding.cpp |
index 275e0d8d7fa6769958c9290f02f12f0de283f3dc..862df7770733675768911482c2721fd68b62b2b2 100644 |
--- a/Source/bindings/v8/V8Binding.cpp |
+++ b/Source/bindings/v8/V8Binding.cpp |
@@ -82,9 +82,9 @@ v8::Handle<v8::Value> throwError(V8ErrorType errorType, const String& message, v |
return V8ThrowException::throwError(errorType, message, isolate); |
} |
-v8::Handle<v8::Value> throwError(v8::Handle<v8::Value> exception) |
+v8::Handle<v8::Value> throwError(v8::Handle<v8::Value> exception, v8::Isolate* isolate) |
{ |
- return V8ThrowException::throwError(exception); |
+ return V8ThrowException::throwError(exception, isolate); |
} |
v8::Handle<v8::Value> throwTypeError(v8::Isolate* isolate) |