| Index: Source/bindings/tests/results/V8TestObjectPython.cpp
 | 
| diff --git a/Source/bindings/tests/results/V8TestObjectPython.cpp b/Source/bindings/tests/results/V8TestObjectPython.cpp
 | 
| index 3514e5c34d4333489c0b640455a6f2b76fbbf438..6aa2cd51f0b77901bd41cf6ef6e8a1163869cbda 100644
 | 
| --- a/Source/bindings/tests/results/V8TestObjectPython.cpp
 | 
| +++ b/Source/bindings/tests/results/V8TestObjectPython.cpp
 | 
| @@ -1837,33 +1837,6 @@ static void doNotCheckSecurityReadonlyLongAttributeAttributeGetterCallback(v8::L
 | 
|      TRACE_EVENT_SET_SAMPLING_STATE("V8", "Execution");
 | 
|  }
 | 
|  
 | 
| -static void doNotCheckSecurityOnGetterLongAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info)
 | 
| -{
 | 
| -    TestObjectPython* imp = V8TestObjectPython::toNative(info.Holder());
 | 
| -    v8SetReturnValueInt(info, imp->doNotCheckSecurityOnGetterLongAttribute());
 | 
| -}
 | 
| -
 | 
| -static void doNotCheckSecurityOnGetterLongAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info)
 | 
| -{
 | 
| -    TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMGetter");
 | 
| -    TestObjectPythonV8Internal::doNotCheckSecurityOnGetterLongAttributeAttributeGetter(info);
 | 
| -    TRACE_EVENT_SET_SAMPLING_STATE("V8", "Execution");
 | 
| -}
 | 
| -
 | 
| -static void doNotCheckSecurityOnGetterLongAttributeAttributeSetter(v8::Local<v8::Value> jsValue, const v8::PropertyCallbackInfo<void>& info)
 | 
| -{
 | 
| -    TestObjectPython* imp = V8TestObjectPython::toNative(info.Holder());
 | 
| -    V8TRYCATCH_VOID(int, cppValue, toInt32(jsValue));
 | 
| -    imp->setDoNotCheckSecurityOnGetterLongAttribute(cppValue);
 | 
| -}
 | 
| -
 | 
| -static void doNotCheckSecurityOnGetterLongAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> jsValue, const v8::PropertyCallbackInfo<void>& info)
 | 
| -{
 | 
| -    TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMSetter");
 | 
| -    TestObjectPythonV8Internal::doNotCheckSecurityOnGetterLongAttributeAttributeSetter(jsValue, info);
 | 
| -    TRACE_EVENT_SET_SAMPLING_STATE("V8", "Execution");
 | 
| -}
 | 
| -
 | 
|  static void doNotCheckSecurityOnSetterLongAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info)
 | 
|  {
 | 
|      TestObjectPython* imp = V8TestObjectPython::toNative(info.Holder());
 | 
| @@ -6176,7 +6149,6 @@ static const V8DOMConfiguration::AttributeConfiguration V8TestObjectPythonAttrib
 | 
|      {"deprecatedLongAttribute", TestObjectPythonV8Internal::deprecatedLongAttributeAttributeGetterCallback, TestObjectPythonV8Internal::deprecatedLongAttributeAttributeSetterCallback, 0, 0, 0, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
 | 
|      {"doNotCheckSecurityLongAttribute", TestObjectPythonV8Internal::doNotCheckSecurityLongAttributeAttributeGetterCallback, TestObjectPythonV8Internal::doNotCheckSecurityLongAttributeAttributeSetterCallback, 0, 0, 0, static_cast<v8::AccessControl>(v8::ALL_CAN_READ | v8::ALL_CAN_WRITE), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
 | 
|      {"doNotCheckSecurityReadonlyLongAttribute", TestObjectPythonV8Internal::doNotCheckSecurityReadonlyLongAttributeAttributeGetterCallback, 0, 0, 0, 0, static_cast<v8::AccessControl>(v8::ALL_CAN_READ), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
 | 
| -    {"doNotCheckSecurityOnGetterLongAttribute", TestObjectPythonV8Internal::doNotCheckSecurityOnGetterLongAttributeAttributeGetterCallback, TestObjectPythonV8Internal::doNotCheckSecurityOnGetterLongAttributeAttributeSetterCallback, 0, 0, 0, static_cast<v8::AccessControl>(v8::ALL_CAN_READ), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
 | 
|      {"doNotCheckSecurityOnSetterLongAttribute", TestObjectPythonV8Internal::doNotCheckSecurityOnSetterLongAttributeAttributeGetterCallback, TestObjectPythonV8Internal::doNotCheckSecurityOnSetterLongAttributeAttributeSetterCallback, 0, 0, 0, static_cast<v8::AccessControl>(v8::ALL_CAN_WRITE), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
 | 
|      {"enforceRangeLongAttribute", TestObjectPythonV8Internal::enforceRangeLongAttributeAttributeGetterCallback, TestObjectPythonV8Internal::enforceRangeLongAttributeAttributeSetterCallback, 0, 0, 0, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
 | 
|      {"getterRaisesExceptionLongAttribute", TestObjectPythonV8Internal::getterRaisesExceptionLongAttributeAttributeGetterCallback, TestObjectPythonV8Internal::getterRaisesExceptionLongAttributeAttributeSetterCallback, 0, 0, 0, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
 | 
| 
 |