Index: Source/bindings/v8/V8CustomElementLifecycleCallbacks.cpp |
diff --git a/Source/bindings/v8/V8CustomElementLifecycleCallbacks.cpp b/Source/bindings/v8/V8CustomElementLifecycleCallbacks.cpp |
index 10ca93f0254dc0d30a6d40a846670b81dac52ba6..8a342766c2d67518566b1e2140246a56554594ea 100644 |
--- a/Source/bindings/v8/V8CustomElementLifecycleCallbacks.cpp |
+++ b/Source/bindings/v8/V8CustomElementLifecycleCallbacks.cpp |
@@ -120,7 +120,7 @@ void V8CustomElementLifecycleCallbacks::created(Element* element) |
v8::Context::Scope scope(context); |
v8::Isolate* isolate = context->GetIsolate(); |
- v8::Handle<v8::Object> receiver = DOMDataStore::current(isolate)->get(element); |
+ v8::Handle<v8::Object> receiver = DOMDataStore::current(isolate)->get<V8Element>(element); |
if (!receiver.IsEmpty()) { |
// Swizzle the prototype of the existing wrapper. We don't need to |
// worry about non-existent wrappers; they will get the right |