| Index: Source/bindings/tests/results/V8TestInterfacePython.cpp | 
| diff --git a/Source/bindings/tests/results/V8TestInterfacePython.cpp b/Source/bindings/tests/results/V8TestInterfacePython.cpp | 
| index ce42ca2c13afbc09cfec1b3001d027cd989e9b96..878c0a9bf6aab756d4f56a80e2bc38cc8e6052ae 100644 | 
| --- a/Source/bindings/tests/results/V8TestInterfacePython.cpp | 
| +++ b/Source/bindings/tests/results/V8TestInterfacePython.cpp | 
| @@ -35,7 +35,6 @@ | 
| #include "V8TestInterfacePython.h" | 
|  | 
| #include "RuntimeEnabledFeatures.h" | 
| -#include "bindings/v8/ScriptController.h" | 
| #include "bindings/v8/V8Binding.h" | 
| #include "bindings/v8/V8DOMConfiguration.h" | 
| #include "bindings/v8/V8DOMWrapper.h" | 
| @@ -140,26 +139,6 @@ ActiveDOMObject* V8TestInterfacePython::toActiveDOMObject(v8::Handle<v8::Object> | 
| return toNative(wrapper); | 
| } | 
|  | 
| -v8::Handle<v8::Object> V8TestInterfacePython::createWrapper(PassRefPtr<TestInterfacePythonImplementation> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) | 
| -{ | 
| -    ASSERT(impl); | 
| -    ASSERT(!DOMDataStore::containsWrapper<V8TestInterfacePython>(impl.get(), isolate)); | 
| -    if (ScriptWrappable::wrapperCanBeStoredInObject(impl.get())) { | 
| -        const WrapperTypeInfo* actualInfo = ScriptWrappable::getTypeInfoFromObject(impl.get()); | 
| -        // Might be a XXXConstructor::wrapperTypeInfo instead of an XXX::wrapperTypeInfo. These will both have | 
| -        // the same object de-ref functions, though, so use that as the basis of the check. | 
| -        RELEASE_ASSERT_WITH_SECURITY_IMPLICATION(actualInfo->derefObjectFunction == wrapperTypeInfo.derefObjectFunction); | 
| -    } | 
| - | 
| -    v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(creationContext, &wrapperTypeInfo, toInternalPointer(impl.get()), isolate); | 
| -    if (UNLIKELY(wrapper.IsEmpty())) | 
| -        return wrapper; | 
| - | 
| -    installPerContextEnabledProperties(wrapper, impl.get(), isolate); | 
| -    V8DOMWrapper::associateObjectWithWrapper<V8TestInterfacePython>(impl, &wrapperTypeInfo, wrapper, isolate, WrapperConfiguration::Dependent); | 
| -    return wrapper; | 
| -} | 
| - | 
| void V8TestInterfacePython::derefObject(void* object) | 
| { | 
| fromInternalPointer(object)->deref(); | 
|  |