| Index: third_party/WebKit/Source/core/svg/SVGNumberList.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGNumberList.h b/third_party/WebKit/Source/core/svg/SVGNumberList.h
|
| index d3a194ef3a9b28ba20cd2140ca9c9eec803acf4d..39ebb86c9b36cc25bc0e9ca32d6bca97d55fedba 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGNumberList.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGNumberList.h
|
| @@ -43,9 +43,9 @@ class SVGNumberList final : public SVGListPropertyHelper<SVGNumberList, SVGNumbe
|
| public:
|
| typedef SVGNumberListTearOff TearOffType;
|
|
|
| - static PassRefPtrWillBeRawPtr<SVGNumberList> create()
|
| + static RawPtr<SVGNumberList> create()
|
| {
|
| - return adoptRefWillBeNoop(new SVGNumberList());
|
| + return new SVGNumberList();
|
| }
|
|
|
| ~SVGNumberList() 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 AnimatedNumberList; }
|
|
|
|
|