| Index: Source/bindings/tests/results/V8TestInterfaceDocument.cpp
|
| diff --git a/Source/bindings/tests/results/V8TestInterfaceDocument.cpp b/Source/bindings/tests/results/V8TestInterfaceDocument.cpp
|
| index 532f0f22b2fd293f00faf17ec2e176ec35cc7c99..1ae803dcfb9059f340355cf5d4c9d46a886d9f7a 100644
|
| --- a/Source/bindings/tests/results/V8TestInterfaceDocument.cpp
|
| +++ b/Source/bindings/tests/results/V8TestInterfaceDocument.cpp
|
| @@ -104,8 +104,8 @@ v8::Handle<v8::Object> wrap(TestInterfaceDocument* impl, v8::Handle<v8::Object>
|
| v8::Handle<v8::Object> wrapper = V8TestInterfaceDocument::createWrapper(impl, creationContext, isolate);
|
| if (wrapper.IsEmpty())
|
| return wrapper;
|
| - DOMWrapperWorld& world = DOMWrapperWorld::current(isolate);
|
| - if (world.isMainWorld()) {
|
| + DOMWrapperWorld* world = DOMWrapperWorld::current(isolate);
|
| + if (world->isMainWorld()) {
|
| if (LocalFrame* frame = impl->frame())
|
| frame->script().windowShell(world)->updateDocumentWrapper(wrapper);
|
| }
|
|
|