Index: Source/bindings/core/v8/custom/V8EventTargetCustom.cpp |
diff --git a/Source/bindings/core/v8/custom/V8EventTargetCustom.cpp b/Source/bindings/core/v8/custom/V8EventTargetCustom.cpp |
index 11347467a5a919ebc26777261f11da52239ef781..b39e1d997635969378b764dc009705d5564dd2a8 100644 |
--- a/Source/bindings/core/v8/custom/V8EventTargetCustom.cpp |
+++ b/Source/bindings/core/v8/custom/V8EventTargetCustom.cpp |
@@ -45,7 +45,7 @@ v8::Handle<v8::Value> toV8(EventTarget* impl, v8::Handle<v8::Object> creationCon |
if (impl->interfaceName() == EventTargetNames::LocalDOMWindow) |
return toV8(static_cast<DOMWindow*>(impl), creationContext, isolate); |
- v8::Handle<v8::Value> wrapper = DOMDataStore::getWrapper(impl, isolate); |
+ v8::Local<v8::Value> wrapper = DOMDataStore::getWrapper(impl, isolate); |
if (!wrapper.IsEmpty()) |
return wrapper; |
return impl->wrap(creationContext, isolate); |