Index: Source/bindings/v8/DOMRequestState.h |
diff --git a/Source/bindings/v8/DOMRequestState.h b/Source/bindings/v8/DOMRequestState.h |
index 32992b8340cfe349ceace8cd6867dbccf72c2402..7c333db02322c4ede8e67add382ad304a1c9431f 100644 |
--- a/Source/bindings/v8/DOMRequestState.h |
+++ b/Source/bindings/v8/DOMRequestState.h |
@@ -44,6 +44,20 @@ public: |
ASSERT(m_executionContext); |
} |
+ DOMRequestState(ExecutionContext* executionContext, PassRefPtr<DOMWrapperWorld> world) |
+ : m_executionContext(executionContext) |
+ , m_world(world) |
+ , m_isolate(toIsolate(executionContext)) |
+ { |
+ } |
+ |
+ DOMRequestState(ExecutionContext* executionContext, DOMWrapperWorld* world) |
+ : m_executionContext(executionContext) |
+ , m_world(world) |
+ , m_isolate(toIsolate(executionContext)) |
+ { |
+ } |
+ |
void clear() |
{ |
m_executionContext = 0; |