Index: Source/bindings/tests/results/V8TestInterfaceCheckSecurity.cpp |
diff --git a/Source/bindings/tests/results/V8TestInterfaceCheckSecurity.cpp b/Source/bindings/tests/results/V8TestInterfaceCheckSecurity.cpp |
index 8de9014d66dadfb90b6021e7bc2d6d5534d2f9a2..1bfd9b9c3e7d8b8b06bfab3148a0c6e6c2aa9c47 100644 |
--- a/Source/bindings/tests/results/V8TestInterfaceCheckSecurity.cpp |
+++ b/Source/bindings/tests/results/V8TestInterfaceCheckSecurity.cpp |
@@ -76,7 +76,7 @@ static void doNotCheckSecurityLongAttributeAttributeSetter(v8::Local<v8::Value> |
v8::Handle<v8::Object> holder = info.Holder(); |
ExceptionState exceptionState(ExceptionState::SetterContext, "doNotCheckSecurityLongAttribute", "TestInterfaceCheckSecurity", holder, info.GetIsolate()); |
TestInterfaceCheckSecurity* impl = V8TestInterfaceCheckSecurity::toNative(holder); |
- V8TRYCATCH_EXCEPTION_VOID(int, cppValue, toInt32(v8Value, exceptionState), exceptionState); |
+ V8TRYCATCH_VOID_EXCEPTION(int, cppValue, toInt32(v8Value, exceptionState), exceptionState); |
impl->setDoNotCheckSecurityLongAttribute(cppValue); |
} |
@@ -120,7 +120,7 @@ static void doNotCheckSecurityOnSetterLongAttributeAttributeSetter(v8::Local<v8: |
v8::Handle<v8::Object> holder = info.Holder(); |
ExceptionState exceptionState(ExceptionState::SetterContext, "doNotCheckSecurityOnSetterLongAttribute", "TestInterfaceCheckSecurity", holder, info.GetIsolate()); |
TestInterfaceCheckSecurity* impl = V8TestInterfaceCheckSecurity::toNative(holder); |
- V8TRYCATCH_EXCEPTION_VOID(int, cppValue, toInt32(v8Value, exceptionState), exceptionState); |
+ V8TRYCATCH_VOID_EXCEPTION(int, cppValue, toInt32(v8Value, exceptionState), exceptionState); |
impl->setDoNotCheckSecurityOnSetterLongAttribute(cppValue); |
} |