Index: Source/bindings/tests/results/V8TestActiveDOMObject.cpp |
diff --git a/Source/bindings/tests/results/V8TestActiveDOMObject.cpp b/Source/bindings/tests/results/V8TestActiveDOMObject.cpp |
index 3b7f3ab617103e79f8d667effe86936d9859f1a8..54cc048f2613db1df439ca99219149a2df992813 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 es(info.GetIsolate()); |
+ ExceptionState es(info.Holder(), info.GetIsolate()); |
if (!BindingSecurity::shouldAllowAccessToFrame(imp->frame(), es)) { |
es.throwIfNeeded(); |
return; |
@@ -306,7 +306,7 @@ static void TestActiveDOMObjectDomainSafeFunctionSetter(v8::Local<v8::String> na |
if (holder.IsEmpty()) |
return; |
TestActiveDOMObject* imp = V8TestActiveDOMObject::toNative(holder); |
- ExceptionState es(info.GetIsolate()); |
+ ExceptionState es(info.Holder(), info.GetIsolate()); |
if (!BindingSecurity::shouldAllowAccessToFrame(imp->frame(), es)) { |
es.throwIfNeeded(); |
return; |