| Index: trunk/Source/bindings/v8/V8CustomElementLifecycleCallbacks.cpp
|
| ===================================================================
|
| --- trunk/Source/bindings/v8/V8CustomElementLifecycleCallbacks.cpp (revision 170423)
|
| +++ trunk/Source/bindings/v8/V8CustomElementLifecycleCallbacks.cpp (working copy)
|
| @@ -116,7 +116,7 @@
|
| if (!executionContext())
|
| return 0;
|
|
|
| - v8::Handle<v8::Context> context = toV8Context(executionContext(), m_world.get());
|
| + v8::Handle<v8::Context> context = toV8Context(executionContext(), *m_world);
|
| if (context.IsEmpty())
|
| return 0;
|
|
|
| @@ -160,7 +160,7 @@
|
| element->setCustomElementState(Element::Upgraded);
|
|
|
| v8::HandleScope handleScope(m_isolate);
|
| - v8::Handle<v8::Context> context = toV8Context(executionContext(), m_world.get());
|
| + v8::Handle<v8::Context> context = toV8Context(executionContext(), *m_world);
|
| if (context.IsEmpty())
|
| return;
|
|
|
| @@ -212,7 +212,7 @@
|
| return;
|
|
|
| v8::HandleScope handleScope(m_isolate);
|
| - v8::Handle<v8::Context> context = toV8Context(executionContext(), m_world.get());
|
| + v8::Handle<v8::Context> context = toV8Context(executionContext(), *m_world);
|
| if (context.IsEmpty())
|
| return;
|
|
|
| @@ -247,7 +247,7 @@
|
| return;
|
|
|
| v8::HandleScope handleScope(m_isolate);
|
| - v8::Handle<v8::Context> context = toV8Context(executionContext(), m_world.get());
|
| + v8::Handle<v8::Context> context = toV8Context(executionContext(), *m_world);
|
| if (context.IsEmpty())
|
| return;
|
|
|
|
|