| Index: third_party/WebKit/Source/core/svg/SVGPointList.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGPointList.h b/third_party/WebKit/Source/core/svg/SVGPointList.h
|
| index 60fb60b1052264d33a955a2c091fec483b2f65c4..5af5e26173d192ae6bdf5d7d965c0586d19dcc2d 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGPointList.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGPointList.h
|
| @@ -43,9 +43,9 @@ class SVGPointList final : public SVGListPropertyHelper<SVGPointList, SVGPoint>
|
| public:
|
| typedef SVGPointListTearOff TearOffType;
|
|
|
| - static PassRefPtrWillBeRawPtr<SVGPointList> create()
|
| + static RawPtr<SVGPointList> create()
|
| {
|
| - return adoptRefWillBeNoop(new SVGPointList());
|
| + return new SVGPointList();
|
| }
|
|
|
| ~SVGPointList() override;
|
| @@ -55,9 +55,9 @@ public:
|
| // SVGPropertyBase:
|
| String valueAsString() const override;
|
|
|
| - void add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) override;
|
| - void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtrWillBeRawPtr<SVGPropertyBase> fromValue, PassRefPtrWillBeRawPtr<SVGPropertyBase> toValue, PassRefPtrWillBeRawPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) override;
|
| - float calculateDistance(PassRefPtrWillBeRawPtr<SVGPropertyBase> to, SVGElement*) override;
|
| + void add(RawPtr<SVGPropertyBase>, SVGElement*) override;
|
| + void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, RawPtr<SVGPropertyBase> fromValue, RawPtr<SVGPropertyBase> toValue, RawPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) override;
|
| + float calculateDistance(RawPtr<SVGPropertyBase> to, SVGElement*) override;
|
|
|
| static AnimatedPropertyType classType() { return AnimatedPoints; }
|
|
|
|
|