| Index: Source/bindings/tests/results/V8TestActiveDOMObject.cpp
|
| diff --git a/Source/bindings/tests/results/V8TestActiveDOMObject.cpp b/Source/bindings/tests/results/V8TestActiveDOMObject.cpp
|
| index 71505fd93a32c310795ac122d7b382a56b06ff6a..e3f1f7371586939ce85b6b63b4c16de2346ad64b 100644
|
| --- a/Source/bindings/tests/results/V8TestActiveDOMObject.cpp
|
| +++ b/Source/bindings/tests/results/V8TestActiveDOMObject.cpp
|
| @@ -108,9 +108,9 @@ static void excitingFunctionMethod(const v8::FunctionCallbackInfo<v8::Value>& in
|
| return;
|
| }
|
| TestActiveDOMObject* imp = V8TestActiveDOMObject::toNative(info.Holder());
|
| - ExceptionState es(info.GetIsolate());
|
| - if (!BindingSecurity::shouldAllowAccessToFrame(imp->frame(), es)) {
|
| - es.throwIfNeeded();
|
| + ExceptionState exceptionState(info.GetIsolate());
|
| + if (!BindingSecurity::shouldAllowAccessToFrame(imp->frame(), exceptionState)) {
|
| + exceptionState.throwIfNeeded();
|
| return;
|
| }
|
| V8TRYCATCH_VOID(Node*, nextChild, V8Node::hasInstance(info[0], info.GetIsolate(), worldType(info.GetIsolate())) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(info[0])) : 0);
|
| @@ -306,9 +306,9 @@ static void TestActiveDOMObjectDomainSafeFunctionSetter(v8::Local<v8::String> na
|
| if (holder.IsEmpty())
|
| return;
|
| TestActiveDOMObject* imp = V8TestActiveDOMObject::toNative(holder);
|
| - ExceptionState es(info.GetIsolate());
|
| - if (!BindingSecurity::shouldAllowAccessToFrame(imp->frame(), es)) {
|
| - es.throwIfNeeded();
|
| + ExceptionState exceptionState(info.GetIsolate());
|
| + if (!BindingSecurity::shouldAllowAccessToFrame(imp->frame(), exceptionState)) {
|
| + exceptionState.throwIfNeeded();
|
| return;
|
| }
|
|
|
|
|