| Index: third_party/WebKit/Source/core/svg/SVGTransformDistance.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGTransformDistance.h b/third_party/WebKit/Source/core/svg/SVGTransformDistance.h
|
| index 32e8a065742a3e43b629b36320e019c848155190..4ceccfc2ea077077db3c3ae858d3e301085eb618 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGTransformDistance.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGTransformDistance.h
|
| @@ -31,12 +31,12 @@ class SVGTransformDistance {
|
| STACK_ALLOCATED();
|
| public:
|
| SVGTransformDistance();
|
| - SVGTransformDistance(PassRefPtrWillBeRawPtr<SVGTransform> fromTransform, PassRefPtrWillBeRawPtr<SVGTransform> toTransform);
|
| + SVGTransformDistance(RawPtr<SVGTransform> fromTransform, RawPtr<SVGTransform> toTransform);
|
|
|
| SVGTransformDistance scaledDistance(float scaleFactor) const;
|
| - PassRefPtrWillBeRawPtr<SVGTransform> addToSVGTransform(PassRefPtrWillBeRawPtr<SVGTransform>) const;
|
| + RawPtr<SVGTransform> addToSVGTransform(RawPtr<SVGTransform>) const;
|
|
|
| - static PassRefPtrWillBeRawPtr<SVGTransform> addSVGTransforms(PassRefPtrWillBeRawPtr<SVGTransform>, PassRefPtrWillBeRawPtr<SVGTransform>, unsigned repeatCount = 1);
|
| + static RawPtr<SVGTransform> addSVGTransforms(RawPtr<SVGTransform>, RawPtr<SVGTransform>, unsigned repeatCount = 1);
|
|
|
| float distance() const;
|
|
|
|
|