| Index: Source/bindings/scripts/code_generator_v8.pm
|
| ===================================================================
|
| --- Source/bindings/scripts/code_generator_v8.pm (revision 169175)
|
| +++ Source/bindings/scripts/code_generator_v8.pm (working copy)
|
| @@ -1980,7 +1980,7 @@
|
| die "[PutForwards=x] could not find $destinationAttrName in interface $attrType" unless $destinationAttribute;
|
| $code .= <<END;
|
| ${implClassName}* proxyImp = ${v8ClassName}::toNative(info.Holder());
|
| - ${attrType}* imp = proxyImp->${attrName}();
|
| + RefPtr<${attrType}> imp = proxyImp->${attrName}();
|
| if (!imp)
|
| return;
|
| END
|
|
|