Index: Source/bindings/tests/results/V8TestInterfacePython.cpp |
diff --git a/Source/bindings/tests/results/V8TestInterfacePython.cpp b/Source/bindings/tests/results/V8TestInterfacePython.cpp |
index ab69d6022558ee6c387d3affc2ca8101b0a7515a..1af9c6c5d0d10c09500952e655f2f7517613b78c 100644 |
--- a/Source/bindings/tests/results/V8TestInterfacePython.cpp |
+++ b/Source/bindings/tests/results/V8TestInterfacePython.cpp |
@@ -36,9 +36,9 @@ |
#include "RuntimeEnabledFeatures.h" |
#include "V8Node.h" |
-#include "V8ReferencedType.h" |
#include "V8TestImplementedAs.h" |
#include "V8TestInterfaceEmpty.h" |
+#include "V8TestObjectPython.h" |
#include "bindings/tests/idls/TestImplements.h" |
#include "bindings/tests/idls/TestImplements2Implementation.h" |
#include "bindings/tests/idls/TestPartialInterfacePython.h" |
@@ -865,11 +865,11 @@ void V8TestInterfacePython::visitDOMWrapper(void* object, const v8::Persistent<v |
TestInterfacePythonImplementation* impl = fromInternalPointer(object); |
v8::Local<v8::Object> creationContext = v8::Local<v8::Object>::New(isolate, wrapper); |
V8WrapperInstantiationScope scope(creationContext, isolate); |
- ReferencedType* referencedName = impl->referencedName(); |
+ TestObjectPython* referencedName = impl->referencedName(); |
if (referencedName) { |
- if (!DOMDataStore::containsWrapper<V8ReferencedType>(referencedName, isolate)) |
+ if (!DOMDataStore::containsWrapper<V8TestObjectPython>(referencedName, isolate)) |
wrap(referencedName, creationContext, isolate); |
- DOMDataStore::setWrapperReference<V8ReferencedType>(wrapper, referencedName, isolate); |
+ DOMDataStore::setWrapperReference<V8TestObjectPython>(wrapper, referencedName, isolate); |
} |
setObjectGroup(object, wrapper, isolate); |
} |