Index: Source/bindings/core/v8/ScriptPromisePropertyBase.h |
diff --git a/Source/bindings/core/v8/ScriptPromisePropertyBase.h b/Source/bindings/core/v8/ScriptPromisePropertyBase.h |
index 201237c2afae8a3ebbf835a4eebe1ac46a72bab5..4da261c17854a8f1b4b3c9495667bded8a0bdce0 100644 |
--- a/Source/bindings/core/v8/ScriptPromisePropertyBase.h |
+++ b/Source/bindings/core/v8/ScriptPromisePropertyBase.h |
@@ -53,8 +53,8 @@ protected: |
// creating/settling promises in; the implementation should use |
// this context. |
virtual v8::Handle<v8::Object> holder(v8::Handle<v8::Object> creationContext, v8::Isolate*) = 0; |
- virtual v8::Handle<v8::Value> resolvedValue(v8::Handle<v8::Object> creationContext, v8::Isolate*) = 0; |
- virtual v8::Handle<v8::Value> rejectedValue(v8::Handle<v8::Object> creationContext, v8::Isolate*) = 0; |
+ virtual v8::Handle<v8::Value> resolvedValue(v8::Isolate*, v8::Handle<v8::Object> creationContext) = 0; |
+ virtual v8::Handle<v8::Value> rejectedValue(v8::Isolate*, v8::Handle<v8::Object> creationContext) = 0; |
void resetBase(); |