Index: Source/bindings/tests/results/V8TestInterfaceConstructor.cpp |
diff --git a/Source/bindings/tests/results/V8TestInterfaceConstructor.cpp b/Source/bindings/tests/results/V8TestInterfaceConstructor.cpp |
index 5be99ad997ff607fb5398c933e8db97d9bbab7e4..1297c55d256c9d82bf492e6ce99cc1dd8dcee41e 100644 |
--- a/Source/bindings/tests/results/V8TestInterfaceConstructor.cpp |
+++ b/Source/bindings/tests/results/V8TestInterfaceConstructor.cpp |
@@ -51,8 +51,7 @@ static void constructor1(const v8::FunctionCallbackInfo<v8::Value>& info) |
v8::Isolate* isolate = info.GetIsolate(); |
ExceptionState exceptionState(ExceptionState::ConstructionContext, "TestInterfaceConstructor", info.Holder(), isolate); |
ExecutionContext* executionContext = currentExecutionContext(isolate); |
- Document& document = *toDocument(currentExecutionContext(isolate)); |
- RefPtr<TestInterfaceConstructor> impl = TestInterfaceConstructor::create(executionContext, document, exceptionState); |
+ RefPtr<TestInterfaceConstructor> impl = TestInterfaceConstructor::create(executionContext, exceptionState); |
if (exceptionState.throwIfNeeded()) |
return; |
@@ -96,8 +95,7 @@ static void constructor2(const v8::FunctionCallbackInfo<v8::Value>& info) |
TONATIVE_VOID_INTERNAL(optionalTestInterfaceEmptyArg, V8TestInterfaceEmpty::toNativeWithTypeCheck(info.GetIsolate(), info[7])); |
} |
ExecutionContext* executionContext = currentExecutionContext(isolate); |
- Document& document = *toDocument(currentExecutionContext(isolate)); |
- RefPtr<TestInterfaceConstructor> impl = TestInterfaceConstructor::create(executionContext, document, doubleArg, stringArg, testInterfaceEmptyArg, dictionaryArg, sequenceStringArg, sequenceDictionaryArg, optionalDictionaryArg, optionalTestInterfaceEmptyArg, exceptionState); |
+ RefPtr<TestInterfaceConstructor> impl = TestInterfaceConstructor::create(executionContext, doubleArg, stringArg, testInterfaceEmptyArg, dictionaryArg, sequenceStringArg, sequenceDictionaryArg, optionalDictionaryArg, optionalTestInterfaceEmptyArg, exceptionState); |
if (exceptionState.throwIfNeeded()) |
return; |