| Index: third_party/WebKit/Source/core/svg/SVGAnimatedAngle.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGAnimatedAngle.h b/third_party/WebKit/Source/core/svg/SVGAnimatedAngle.h
|
| index fd6d86712ffb3556698a3a4586bee36fec5e18ab..a788754246836a49d2a41c70579a84363d539a3c 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGAnimatedAngle.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGAnimatedAngle.h
|
| @@ -42,9 +42,9 @@ class SVGMarkerElement;
|
| class SVGAnimatedAngle final : public SVGAnimatedProperty<SVGAngle> {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static PassRefPtrWillBeRawPtr<SVGAnimatedAngle> create(SVGMarkerElement* contextElement)
|
| + static RawPtr<SVGAnimatedAngle> create(SVGMarkerElement* contextElement)
|
| {
|
| - return adoptRefWillBeNoop(new SVGAnimatedAngle(contextElement));
|
| + return (new SVGAnimatedAngle(contextElement));
|
| }
|
|
|
| ~SVGAnimatedAngle() override;
|
| @@ -55,7 +55,7 @@ public:
|
|
|
| void synchronizeAttribute() override;
|
|
|
| - void setAnimatedValue(PassRefPtrWillBeRawPtr<SVGPropertyBase>) override;
|
| + void setAnimatedValue(RawPtr<SVGPropertyBase>) override;
|
| void animationEnded() override;
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
| @@ -64,7 +64,7 @@ protected:
|
| explicit SVGAnimatedAngle(SVGMarkerElement* contextElement);
|
|
|
| private:
|
| - RefPtrWillBeMember<SVGAnimatedEnumeration<SVGMarkerOrientType>> m_orientType;
|
| + Member<SVGAnimatedEnumeration<SVGMarkerOrientType>> m_orientType;
|
| };
|
|
|
| } // namespace blink
|
|
|