| Index: Source/bindings/tests/results/core/V8TestInterfaceCheckSecurity.cpp | 
| diff --git a/Source/bindings/tests/results/core/V8TestInterfaceCheckSecurity.cpp b/Source/bindings/tests/results/core/V8TestInterfaceCheckSecurity.cpp | 
| index d9c86927739db771319cfcec28ae15884f7c5fe4..673d332a0da8c6b303c7339711da81321f72589d 100644 | 
| --- a/Source/bindings/tests/results/core/V8TestInterfaceCheckSecurity.cpp | 
| +++ b/Source/bindings/tests/results/core/V8TestInterfaceCheckSecurity.cpp | 
| @@ -77,7 +77,7 @@ static void doNotCheckSecurityLongAttributeAttributeSetter(v8::Local<v8::Value> | 
| v8::Local<v8::Object> holder = info.Holder(); | 
| ExceptionState exceptionState(ExceptionState::SetterContext, "doNotCheckSecurityLongAttribute", "TestInterfaceCheckSecurity", holder, info.GetIsolate()); | 
| TestInterfaceCheckSecurity* impl = V8TestInterfaceCheckSecurity::toImpl(holder); | 
| -    int cppValue = toInt32(info.GetIsolate(), v8Value, exceptionState); | 
| +    int cppValue = toInt32(info.GetIsolate(), v8Value, NormalConversion, exceptionState); | 
| if (exceptionState.throwIfNeeded()) | 
| return; | 
| impl->setDoNotCheckSecurityLongAttribute(cppValue); | 
| @@ -124,7 +124,7 @@ static void doNotCheckSecurityOnSetterLongAttributeAttributeSetter(v8::Local<v8: | 
| v8::Local<v8::Object> holder = info.Holder(); | 
| ExceptionState exceptionState(ExceptionState::SetterContext, "doNotCheckSecurityOnSetterLongAttribute", "TestInterfaceCheckSecurity", holder, info.GetIsolate()); | 
| TestInterfaceCheckSecurity* impl = V8TestInterfaceCheckSecurity::toImpl(holder); | 
| -    int cppValue = toInt32(info.GetIsolate(), v8Value, exceptionState); | 
| +    int cppValue = toInt32(info.GetIsolate(), v8Value, NormalConversion, exceptionState); | 
| if (exceptionState.throwIfNeeded()) | 
| return; | 
| impl->setDoNotCheckSecurityOnSetterLongAttribute(cppValue); | 
|  |