| Index: third_party/WebKit/Source/core/svg/SVGAnimatedColor.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGAnimatedColor.h b/third_party/WebKit/Source/core/svg/SVGAnimatedColor.h
|
| index a3299ffc0c83ca47239d4bdbe6ae0e813b00bcb9..24e3c10bec60a34309010ef4869f4ce0072fb8c1 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGAnimatedColor.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGAnimatedColor.h
|
| @@ -42,17 +42,17 @@ class SVGAnimationElement;
|
| // FIXME: WebAnimations: Replacable with AnimatableColor once SMIL animations are implemented in WebAnimations.
|
| class SVGColorProperty final : public SVGPropertyBase {
|
| public:
|
| - static PassRefPtrWillBeRawPtr<SVGColorProperty> create(const String& colorString)
|
| + static RawPtr<SVGColorProperty> create(const String& colorString)
|
| {
|
| - return adoptRefWillBeNoop(new SVGColorProperty(colorString));
|
| + return new SVGColorProperty(colorString);
|
| }
|
|
|
| - PassRefPtrWillBeRawPtr<SVGPropertyBase> cloneForAnimation(const String&) const override;
|
| + RawPtr<SVGPropertyBase> cloneForAnimation(const String&) const override;
|
| String valueAsString() const override;
|
|
|
| - void add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) override;
|
| - void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtrWillBeRawPtr<SVGPropertyBase> from, PassRefPtrWillBeRawPtr<SVGPropertyBase> to, 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> from, RawPtr<SVGPropertyBase> to, RawPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) override;
|
| + float calculateDistance(RawPtr<SVGPropertyBase> to, SVGElement*) override;
|
|
|
| static AnimatedPropertyType classType() { return AnimatedColor; }
|
|
|
|
|