| Index: third_party/WebKit/Source/core/svg/SVGAnimatedNumberOptionalNumber.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGAnimatedNumberOptionalNumber.h b/third_party/WebKit/Source/core/svg/SVGAnimatedNumberOptionalNumber.h
|
| index 0c819380ba2ed6408ff3824c845def7bed0f2ac2..2c95209b5f2617e29d728ec939f26bb40a5ae9ec 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGAnimatedNumberOptionalNumber.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGAnimatedNumberOptionalNumber.h
|
| @@ -44,12 +44,12 @@ namespace blink {
|
| // For example, see SVGFEDropShadowElement::stdDeviation{X,Y}()
|
| class SVGAnimatedNumberOptionalNumber : public SVGAnimatedPropertyCommon<SVGNumberOptionalNumber> {
|
| public:
|
| - static PassRefPtrWillBeRawPtr<SVGAnimatedNumberOptionalNumber> create(SVGElement* contextElement, const QualifiedName& attributeName, float initialFirstValue = 0, float initialSecondValue = 0)
|
| + static RawPtr<SVGAnimatedNumberOptionalNumber> create(SVGElement* contextElement, const QualifiedName& attributeName, float initialFirstValue = 0, float initialSecondValue = 0)
|
| {
|
| - return adoptRefWillBeNoop(new SVGAnimatedNumberOptionalNumber(contextElement, attributeName, initialFirstValue, initialSecondValue));
|
| + return new SVGAnimatedNumberOptionalNumber(contextElement, attributeName, initialFirstValue, initialSecondValue);
|
| }
|
|
|
| - void setAnimatedValue(PassRefPtrWillBeRawPtr<SVGPropertyBase>) override;
|
| + void setAnimatedValue(RawPtr<SVGPropertyBase>) override;
|
| bool needsSynchronizeAttribute() override;
|
| void animationEnded() override;
|
|
|
| @@ -61,8 +61,8 @@ public:
|
| protected:
|
| SVGAnimatedNumberOptionalNumber(SVGElement* contextElement, const QualifiedName& attributeName, float initialFirstValue, float initialSecondValue);
|
|
|
| - RefPtrWillBeMember<SVGAnimatedNumber> m_firstNumber;
|
| - RefPtrWillBeMember<SVGAnimatedNumber> m_secondNumber;
|
| + Member<SVGAnimatedNumber> m_firstNumber;
|
| + Member<SVGAnimatedNumber> m_secondNumber;
|
| };
|
|
|
| } // namespace blink
|
|
|