Index: Source/bindings/templates/attributes.cpp |
diff --git a/Source/bindings/templates/attributes.cpp b/Source/bindings/templates/attributes.cpp |
index d22962c427b0dd86950366466d92b4d777261f31..78e926b5eec318616c47ebbee81b3bab0cf4247a 100644 |
--- a/Source/bindings/templates/attributes.cpp |
+++ b/Source/bindings/templates/attributes.cpp |
@@ -227,7 +227,7 @@ v8::Local<v8::Value> jsValue, const v8::PropertyCallbackInfo<void>& info |
{# impl #} |
{% if attribute.put_forwards %} |
{{cpp_class}}* proxyImpl = {{v8_class}}::toNative(info.Holder()); |
- RefPtr<{{attribute.idl_type}}> impl = WTF::getPtr(proxyImpl->{{attribute.name}}()); |
+ {{attribute.ref_ptr}}<{{attribute.idl_type}}> impl = WTF::getPtr(proxyImpl->{{attribute.name}}()); |
if (!impl) |
return; |
{% elif not attribute.is_static %} |