Index: Source/bindings/tests/results/modules/V8TestInterface5.cpp |
diff --git a/Source/bindings/tests/results/modules/V8TestInterface5.cpp b/Source/bindings/tests/results/modules/V8TestInterface5.cpp |
index 9c19e0edbf4b89491645fa9e2ccedd1f5291a252..af3a7912a36b016be7ac15fb2ce571e6ad414956 100644 |
--- a/Source/bindings/tests/results/modules/V8TestInterface5.cpp |
+++ b/Source/bindings/tests/results/modules/V8TestInterface5.cpp |
@@ -907,8 +907,8 @@ static void namedPropertyEnumeratorCallback(const v8::PropertyCallbackInfo<v8::A |
void V8TestInterface5::visitDOMWrapper(v8::Isolate* isolate, ScriptWrappable* scriptWrappable, const v8::Persistent<v8::Object>& wrapper) |
{ |
TestInterface5Implementation* impl = scriptWrappable->toImpl<TestInterface5Implementation>(); |
- v8::Local<v8::Object> creationContext = v8::Local<v8::Object>::New(isolate, wrapper); |
- V8WrapperInstantiationScope scope(creationContext, isolate); |
+ v8::Local<v8::Object> context = v8::Local<v8::Object>::New(isolate, wrapper); |
+ v8::Context::Scope scope(context->CreationContext()); |
TestInterface5Implementation* referencedName = impl->referencedName(); |
if (referencedName) { |
if (DOMDataStore::containsWrapper(referencedName, isolate)) |