Index: Source/bindings/tests/results/V8TestCallbackInterface.cpp |
diff --git a/Source/bindings/tests/results/V8TestCallbackInterface.cpp b/Source/bindings/tests/results/V8TestCallbackInterface.cpp |
index 9605c1478ee091aef1803816bae512e2615ed366..6d18a0c66a4021ee385a5a5c04ea42d7105909cc 100644 |
--- a/Source/bindings/tests/results/V8TestCallbackInterface.cpp |
+++ b/Source/bindings/tests/results/V8TestCallbackInterface.cpp |
@@ -62,7 +62,7 @@ void V8TestCallbackInterface::voidMethod() |
v8::HandleScope handleScope(m_isolate); |
- v8::Handle<v8::Context> v8Context = toV8Context(executionContext(), m_world.get()); |
+ v8::Handle<v8::Context> v8Context = toV8Context(executionContext(), m_world); |
if (v8Context.IsEmpty()) |
return; |
@@ -79,7 +79,7 @@ bool V8TestCallbackInterface::booleanMethod() |
v8::HandleScope handleScope(m_isolate); |
- v8::Handle<v8::Context> v8Context = toV8Context(executionContext(), m_world.get()); |
+ v8::Handle<v8::Context> v8Context = toV8Context(executionContext(), m_world); |
if (v8Context.IsEmpty()) |
return true; |
@@ -96,7 +96,7 @@ void V8TestCallbackInterface::voidMethodBooleanArg(bool boolArg) |
v8::HandleScope handleScope(m_isolate); |
- v8::Handle<v8::Context> v8Context = toV8Context(executionContext(), m_world.get()); |
+ v8::Handle<v8::Context> v8Context = toV8Context(executionContext(), m_world); |
if (v8Context.IsEmpty()) |
return; |
@@ -119,7 +119,7 @@ void V8TestCallbackInterface::voidMethodSequenceArg(const Vector<RefPtr<TestInte |
v8::HandleScope handleScope(m_isolate); |
- v8::Handle<v8::Context> v8Context = toV8Context(executionContext(), m_world.get()); |
+ v8::Handle<v8::Context> v8Context = toV8Context(executionContext(), m_world); |
if (v8Context.IsEmpty()) |
return; |
@@ -142,7 +142,7 @@ void V8TestCallbackInterface::voidMethodFloatArg(float floatArg) |
v8::HandleScope handleScope(m_isolate); |
- v8::Handle<v8::Context> v8Context = toV8Context(executionContext(), m_world.get()); |
+ v8::Handle<v8::Context> v8Context = toV8Context(executionContext(), m_world); |
if (v8Context.IsEmpty()) |
return; |
@@ -165,7 +165,7 @@ void V8TestCallbackInterface::voidMethodTestInterfaceEmptyArg(TestInterfaceEmpty |
v8::HandleScope handleScope(m_isolate); |
- v8::Handle<v8::Context> v8Context = toV8Context(executionContext(), m_world.get()); |
+ v8::Handle<v8::Context> v8Context = toV8Context(executionContext(), m_world); |
if (v8Context.IsEmpty()) |
return; |
@@ -188,7 +188,7 @@ void V8TestCallbackInterface::voidMethodTestInterfaceEmptyStringArg(TestInterfac |
v8::HandleScope handleScope(m_isolate); |
- v8::Handle<v8::Context> v8Context = toV8Context(executionContext(), m_world.get()); |
+ v8::Handle<v8::Context> v8Context = toV8Context(executionContext(), m_world); |
if (v8Context.IsEmpty()) |
return; |
@@ -217,7 +217,7 @@ void V8TestCallbackInterface::callbackWithThisValueVoidMethodStringArg(ScriptVal |
v8::HandleScope handleScope(m_isolate); |
- v8::Handle<v8::Context> v8Context = toV8Context(executionContext(), m_world.get()); |
+ v8::Handle<v8::Context> v8Context = toV8Context(executionContext(), m_world); |
if (v8Context.IsEmpty()) |
return; |