Index: Source/bindings/v8/custom/V8WebKitPointCustom.cpp |
diff --git a/Source/bindings/v8/custom/V8WebKitPointCustom.cpp b/Source/bindings/v8/custom/V8WebKitPointCustom.cpp |
index 98329cc0900faeb73eebc9ba3c049451a4f68f66..00d640f2a384025f7fadfe1c1ab0e647a4cdb45b 100644 |
--- a/Source/bindings/v8/custom/V8WebKitPointCustom.cpp |
+++ b/Source/bindings/v8/custom/V8WebKitPointCustom.cpp |
@@ -57,7 +57,7 @@ void V8WebKitPoint::constructorCustom(const v8::FunctionCallbackInfo<v8::Value>& |
} |
RefPtr<DOMPoint> point = DOMPoint::create(x, y); |
v8::Handle<v8::Object> wrapper = args.Holder(); |
- V8DOMWrapper::associateObjectWithWrapper(point.release(), &info, wrapper, args.GetIsolate(), WrapperConfiguration::Dependent); |
+ V8DOMWrapper::associateObjectWithWrapper<V8WebKitPoint>(point.release(), &info, wrapper, args.GetIsolate(), WrapperConfiguration::Dependent); |
args.GetReturnValue().Set(wrapper); |
} |