| Index: Source/bindings/tests/results/V8TestInterfaceConstructor.cpp
|
| diff --git a/Source/bindings/tests/results/V8TestInterfaceConstructor.cpp b/Source/bindings/tests/results/V8TestInterfaceConstructor.cpp
|
| index 8195cca1e556198fa6da7bc8fa17b3cb33ae336d..1dabbbde8cb42f9fc76de1031e5f20f78cdbb76c 100644
|
| --- a/Source/bindings/tests/results/V8TestInterfaceConstructor.cpp
|
| +++ b/Source/bindings/tests/results/V8TestInterfaceConstructor.cpp
|
| @@ -77,7 +77,9 @@ template <typename T> void V8_USE(T) { }
|
| static void constructor(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| {
|
| ExceptionState exceptionState(info.Holder(), info.GetIsolate());
|
| - RefPtr<TestInterfaceConstructor> impl = TestInterfaceConstructor::create(exceptionState);
|
| + ExecutionContext* context = getExecutionContext();
|
| + Document& document = *toDocument(getExecutionContext());
|
| + RefPtr<TestInterfaceConstructor> impl = TestInterfaceConstructor::create(context, document, exceptionState);
|
| v8::Handle<v8::Object> wrapper = info.Holder();
|
| if (exceptionState.throwIfNeeded())
|
| return;
|
|
|