Index: Source/core/svg/SVGPointTearOff.h |
diff --git a/Source/core/svg/SVGPointTearOff.h b/Source/core/svg/SVGPointTearOff.h |
index a9d947621a23441ff7ea62a7becd1d8238e1f1ea..674a459fc19f252c64339b45e76c8a10cdeebb20 100644 |
--- a/Source/core/svg/SVGPointTearOff.h |
+++ b/Source/core/svg/SVGPointTearOff.h |
@@ -42,9 +42,9 @@ class SVGMatrixTearOff; |
class SVGPointTearOff : public SVGPropertyTearOff<SVGPoint>, public ScriptWrappable { |
DEFINE_WRAPPERTYPEINFO(); |
public: |
- static PassRefPtr<SVGPointTearOff> create(PassRefPtr<SVGPoint> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) |
+ static PassRefPtrWillBeRawPtr<SVGPointTearOff> create(PassRefPtrWillBeRawPtr<SVGPoint> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) |
{ |
- return adoptRef(new SVGPointTearOff(target, contextElement, propertyIsAnimVal, attributeName)); |
+ return adoptRefWillBeNoop(new SVGPointTearOff(target, contextElement, propertyIsAnimVal, attributeName)); |
} |
void setX(float, ExceptionState&); |
@@ -52,10 +52,10 @@ public: |
float x() { return target()->x(); } |
float y() { return target()->y(); } |
- PassRefPtr<SVGPointTearOff> matrixTransform(PassRefPtr<SVGMatrixTearOff>); |
+ PassRefPtrWillBeRawPtr<SVGPointTearOff> matrixTransform(PassRefPtrWillBeRawPtr<SVGMatrixTearOff>); |
protected: |
- SVGPointTearOff(PassRefPtr<SVGPoint>, SVGElement* contextElement, PropertyIsAnimValType, const QualifiedName& attributeName = QualifiedName::null()); |
+ SVGPointTearOff(PassRefPtrWillBeRawPtr<SVGPoint>, SVGElement* contextElement, PropertyIsAnimValType, const QualifiedName& attributeName = QualifiedName::null()); |
}; |
} // namespace blink |