Index: Source/bindings/v8/custom/V8HTMLImageElementConstructor.cpp |
diff --git a/Source/bindings/v8/custom/V8HTMLImageElementConstructor.cpp b/Source/bindings/v8/custom/V8HTMLImageElementConstructor.cpp |
index e50175341001dfdbefa09d426ed98c94a117d410..4704deabacfc34fc70d162df4ffc5a62f0c542d4 100644 |
--- a/Source/bindings/v8/custom/V8HTMLImageElementConstructor.cpp |
+++ b/Source/bindings/v8/custom/V8HTMLImageElementConstructor.cpp |
@@ -82,7 +82,7 @@ static void v8HTMLImageElementConstructorMethodCustom(const v8::FunctionCallback |
RefPtr<HTMLImageElement> image = HTMLImageElement::createForJSConstructor(document, optionalWidth, optionalHeight); |
v8::Handle<v8::Object> wrapper = args.Holder(); |
- V8DOMWrapper::associateObjectWithWrapper(image.release(), &V8HTMLImageElementConstructor::info, wrapper, args.GetIsolate(), WrapperConfiguration::Dependent); |
+ V8DOMWrapper::associateObjectWithWrapper<V8HTMLImageElement>(image.release(), &V8HTMLImageElementConstructor::info, wrapper, args.GetIsolate(), WrapperConfiguration::Dependent); |
v8SetReturnValue(args, wrapper); |
} |