| Index: third_party/WebKit/Source/core/svg/SVGStaticStringList.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGStaticStringList.h b/third_party/WebKit/Source/core/svg/SVGStaticStringList.h
|
| index 6abf71d4d946f707692a25df56dada29ee05e948..b6bcaac7ec7e25d7778876c0a7abad555b1d6a9a 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGStaticStringList.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGStaticStringList.h
|
| @@ -43,9 +43,9 @@ class SVGElement;
|
| // Inherits SVGAnimatedPropertyBase to enable XML attribute synchronization, but this is never animated.
|
| class SVGStaticStringList final : public SVGAnimatedPropertyBase {
|
| public:
|
| - static PassRefPtrWillBeRawPtr<SVGStaticStringList> create(SVGElement* contextElement, const QualifiedName& attributeName)
|
| + static RawPtr<SVGStaticStringList> create(SVGElement* contextElement, const QualifiedName& attributeName)
|
| {
|
| - return adoptRefWillBeNoop(new SVGStaticStringList(contextElement, attributeName));
|
| + return new SVGStaticStringList(contextElement, attributeName);
|
| }
|
|
|
| ~SVGStaticStringList() override;
|
| @@ -54,8 +54,8 @@ public:
|
| SVGPropertyBase* currentValueBase() override;
|
| const SVGPropertyBase& baseValueBase() const override;
|
| bool isAnimating() const override;
|
| - PassRefPtrWillBeRawPtr<SVGPropertyBase> createAnimatedValue() override;
|
| - void setAnimatedValue(PassRefPtrWillBeRawPtr<SVGPropertyBase>) override;
|
| + RawPtr<SVGPropertyBase> createAnimatedValue() override;
|
| + void setAnimatedValue(RawPtr<SVGPropertyBase>) override;
|
| void animationEnded() override;
|
| bool needsSynchronizeAttribute() override;
|
|
|
| @@ -69,8 +69,8 @@ public:
|
| private:
|
| SVGStaticStringList(SVGElement*, const QualifiedName&);
|
|
|
| - RefPtrWillBeMember<SVGStringList> m_value;
|
| - RefPtrWillBeMember<SVGStringListTearOff> m_tearOff;
|
| + Member<SVGStringList> m_value;
|
| + Member<SVGStringListTearOff> m_tearOff;
|
| };
|
|
|
| } // namespace blink
|
|
|