Index: Source/bindings/tests/results/V8TestInterface.cpp |
diff --git a/Source/bindings/tests/results/V8TestInterface.cpp b/Source/bindings/tests/results/V8TestInterface.cpp |
index 76768a543f67d087f209d2ac98acdf0057a6c740..190a24601a06b7308c669d5f6a8296ac72a8f725 100644 |
--- a/Source/bindings/tests/results/V8TestInterface.cpp |
+++ b/Source/bindings/tests/results/V8TestInterface.cpp |
@@ -37,7 +37,6 @@ |
#include "RuntimeEnabledFeatures.h" |
#include "V8Node.h" |
#include "V8NodeList.h" |
-#include "V8ReferencedType.h" |
#include "V8TestInterfaceEmpty.h" |
#include "V8TestObject.h" |
#include "bindings/tests/idls/TestImplements.h" |
@@ -706,11 +705,11 @@ void V8TestInterface::visitDOMWrapper(void* object, const v8::Persistent<v8::Obj |
TestInterface* impl = fromInternalPointer(object); |
v8::Local<v8::Object> creationContext = v8::Local<v8::Object>::New(isolate, wrapper); |
V8WrapperInstantiationScope scope(creationContext, isolate); |
- ReferencedType* referencedName = impl->referencedName(); |
+ TestObj* referencedName = impl->referencedName(); |
if (referencedName) { |
- if (!DOMDataStore::containsWrapper<V8ReferencedType>(referencedName, isolate)) |
+ if (!DOMDataStore::containsWrapper<V8TestObject>(referencedName, isolate)) |
wrap(referencedName, creationContext, isolate); |
- DOMDataStore::setWrapperReference<V8ReferencedType>(wrapper, referencedName, isolate); |
+ DOMDataStore::setWrapperReference<V8TestObject>(wrapper, referencedName, isolate); |
} |
setObjectGroup(object, wrapper, isolate); |
} |