Index: Source/bindings/tests/results/V8TestActiveDOMObject.cpp |
diff --git a/Source/bindings/tests/results/V8TestActiveDOMObject.cpp b/Source/bindings/tests/results/V8TestActiveDOMObject.cpp |
index e3f1f7371586939ce85b6b63b4c16de2346ad64b..a3ac5a7f62cc53d44b665a1cce73436e4195ce97 100644 |
--- a/Source/bindings/tests/results/V8TestActiveDOMObject.cpp |
+++ b/Source/bindings/tests/results/V8TestActiveDOMObject.cpp |
@@ -108,7 +108,7 @@ static void excitingFunctionMethod(const v8::FunctionCallbackInfo<v8::Value>& in |
return; |
} |
TestActiveDOMObject* imp = V8TestActiveDOMObject::toNative(info.Holder()); |
- ExceptionState exceptionState(info.GetIsolate()); |
+ ExceptionState exceptionState(info.Holder(), info.GetIsolate()); |
if (!BindingSecurity::shouldAllowAccessToFrame(imp->frame(), exceptionState)) { |
exceptionState.throwIfNeeded(); |
return; |
@@ -306,7 +306,7 @@ static void TestActiveDOMObjectDomainSafeFunctionSetter(v8::Local<v8::String> na |
if (holder.IsEmpty()) |
return; |
TestActiveDOMObject* imp = V8TestActiveDOMObject::toNative(holder); |
- ExceptionState exceptionState(info.GetIsolate()); |
+ ExceptionState exceptionState(info.Holder(), info.GetIsolate()); |
if (!BindingSecurity::shouldAllowAccessToFrame(imp->frame(), exceptionState)) { |
exceptionState.throwIfNeeded(); |
return; |