Index: Source/bindings/tests/results/core/V8TestInterfaceNode.cpp |
diff --git a/Source/bindings/tests/results/core/V8TestInterfaceNode.cpp b/Source/bindings/tests/results/core/V8TestInterfaceNode.cpp |
index e6e839ef9e8258f83f74df697b93eadbd3062b61..7dda941231798ef260bcce413005fc4e9b6ed18e 100644 |
--- a/Source/bindings/tests/results/core/V8TestInterfaceNode.cpp |
+++ b/Source/bindings/tests/results/core/V8TestInterfaceNode.cpp |
@@ -82,7 +82,7 @@ static void eventHandlerAttributeAttributeGetter(const v8::PropertyCallbackInfo< |
v8::Local<v8::Object> holder = info.Holder(); |
TestInterfaceNode* impl = V8TestInterfaceNode::toImpl(holder); |
EventListener* cppValue(impl->eventHandlerAttribute()); |
- v8SetReturnValue(info, cppValue ? v8::Handle<v8::Value>(V8AbstractEventListener::cast(cppValue)->getListenerObject(impl->executionContext())) : v8::Handle<v8::Value>(v8::Null(info.GetIsolate()))); |
+ v8SetReturnValue(info, cppValue ? v8::Local<v8::Value>(V8AbstractEventListener::cast(cppValue)->getListenerObject(impl->executionContext())) : v8::Local<v8::Value>(v8::Null(info.GetIsolate()))); |
} |
static void eventHandlerAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) |