Index: Source/bindings/v8/custom/V8PromiseCustom.h |
diff --git a/Source/bindings/v8/custom/V8PromiseCustom.h b/Source/bindings/v8/custom/V8PromiseCustom.h |
index 930f3f60fe2798e51e1f5d4b67de0bbac9e70ce2..8b0957cf2070d553ffa5f7a574e976813464cf43 100644 |
--- a/Source/bindings/v8/custom/V8PromiseCustom.h |
+++ b/Source/bindings/v8/custom/V8PromiseCustom.h |
@@ -100,12 +100,12 @@ public: |
// Clear the Promise / PromiseResolver internal object with the given state and result. |
// This function clears callbacks in the object. |
- static void clearInternal(v8::Handle<v8::Object> internal, PromiseState, v8::Handle<v8::Value> result); |
+ static void clearInternal(v8::Handle<v8::Object> internal, PromiseState, v8::Handle<v8::Value> result, v8::Isolate*); |
// |internal| must be an Promise / PromiseResolver internal object. |
static PromiseState getState(v8::Handle<v8::Object> internal); |
// |internal| must be an Promise / PromiseResolver internal object. |
- static void setState(v8::Handle<v8::Object> internal, PromiseState); |
+ static void setState(v8::Handle<v8::Object> internal, PromiseState, v8::Isolate*); |
// Call |function| synchronously or asynchronously, depending on |mode|. |
// If |function| throws an exception, this function catches it and does not rethrow. |