| Index: third_party/WebKit/Source/core/svg/SVGTextPositioningElement.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGTextPositioningElement.h b/third_party/WebKit/Source/core/svg/SVGTextPositioningElement.h
|
| index 618a35f4a1f5c32abc682af9d429114a86471fcd..3f2fc8baaf47f9a584429272cb7aa8b5563c64c6 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGTextPositioningElement.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGTextPositioningElement.h
|
| @@ -48,11 +48,11 @@ protected:
|
| void svgAttributeChanged(const QualifiedName&) final;
|
| bool isTextPositioning() const final { return true; }
|
|
|
| - RefPtrWillBeMember<SVGAnimatedLengthList> m_x;
|
| - RefPtrWillBeMember<SVGAnimatedLengthList> m_y;
|
| - RefPtrWillBeMember<SVGAnimatedLengthList> m_dx;
|
| - RefPtrWillBeMember<SVGAnimatedLengthList> m_dy;
|
| - RefPtrWillBeMember<SVGAnimatedNumberList> m_rotate;
|
| + Member<SVGAnimatedLengthList> m_x;
|
| + Member<SVGAnimatedLengthList> m_y;
|
| + Member<SVGAnimatedLengthList> m_dx;
|
| + Member<SVGAnimatedLengthList> m_dy;
|
| + Member<SVGAnimatedNumberList> m_rotate;
|
| };
|
|
|
| inline bool isSVGTextPositioningElement(const SVGElement& element)
|
|
|