| Index: third_party/WebKit/Source/core/svg/SVGTextContentElement.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGTextContentElement.h b/third_party/WebKit/Source/core/svg/SVGTextContentElement.h
|
| index b7c71bc53693817cac52b1a461a37c888242a599..06459c2560ae0137c5412bc372e52d5428728caa 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGTextContentElement.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGTextContentElement.h
|
| @@ -53,11 +53,11 @@ public:
|
| unsigned getNumberOfChars();
|
| float getComputedTextLength();
|
| float getSubStringLength(unsigned charnum, unsigned nchars, ExceptionState&);
|
| - PassRefPtrWillBeRawPtr<SVGPointTearOff> getStartPositionOfChar(unsigned charnum, ExceptionState&);
|
| - PassRefPtrWillBeRawPtr<SVGPointTearOff> getEndPositionOfChar(unsigned charnum, ExceptionState&);
|
| - PassRefPtrWillBeRawPtr<SVGRectTearOff> getExtentOfChar(unsigned charnum, ExceptionState&);
|
| + RawPtr<SVGPointTearOff> getStartPositionOfChar(unsigned charnum, ExceptionState&);
|
| + RawPtr<SVGPointTearOff> getEndPositionOfChar(unsigned charnum, ExceptionState&);
|
| + RawPtr<SVGRectTearOff> getExtentOfChar(unsigned charnum, ExceptionState&);
|
| float getRotationOfChar(unsigned charnum, ExceptionState&);
|
| - int getCharNumAtPosition(PassRefPtrWillBeRawPtr<SVGPointTearOff>, ExceptionState&);
|
| + int getCharNumAtPosition(RawPtr<SVGPointTearOff>, ExceptionState&);
|
| void selectSubString(unsigned charnum, unsigned nchars, ExceptionState&);
|
|
|
| static SVGTextContentElement* elementFromLineLayoutItem(const LineLayoutItem);
|
| @@ -80,9 +80,9 @@ protected:
|
| private:
|
| bool isTextContent() const final { return true; }
|
|
|
| - RefPtrWillBeMember<SVGAnimatedLength> m_textLength;
|
| + Member<SVGAnimatedLength> m_textLength;
|
| bool m_textLengthIsSpecifiedByUser;
|
| - RefPtrWillBeMember<SVGAnimatedEnumeration<SVGLengthAdjustType>> m_lengthAdjust;
|
| + Member<SVGAnimatedEnumeration<SVGLengthAdjustType>> m_lengthAdjust;
|
| };
|
|
|
| inline bool isSVGTextContentElement(const SVGElement& element)
|
|
|