Chromium Code Reviews

Unified Diff: trunk/Source/bindings/v8/V8CustomElementLifecycleCallbacks.cpp

Issue 218813002: Revert 170357 "Revert of Make DOMWrapperWorld::current() return ..." (Closed) Base URL: svn://svn.chromium.org/blink/
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « trunk/Source/bindings/v8/V8Binding.cpp ('k') | trunk/Source/bindings/v8/V8DOMConfiguration.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « trunk/Source/bindings/v8/V8Binding.cpp ('k') | trunk/Source/bindings/v8/V8DOMConfiguration.h » ('j') | no next file with comments »

Powered by Google App Engine