| Index: third_party/WebKit/Source/core/svg/SVGPolyElement.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGPolyElement.h b/third_party/WebKit/Source/core/svg/SVGPolyElement.h
|
| index 7538faee7fda36752c10dc312b63e9ed25619ba6..d42ab3212663d22801ed421891b269826357acea 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGPolyElement.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGPolyElement.h
|
| @@ -33,8 +33,8 @@ class SVGPolyElement : public SVGGeometryElement {
|
| public:
|
| SVGAnimatedPointList* points() const { return m_points.get(); }
|
|
|
| - PassRefPtrWillBeRawPtr<SVGPointListTearOff> pointsFromJavascript() { return m_points->baseVal(); }
|
| - PassRefPtrWillBeRawPtr<SVGPointListTearOff> animatedPoints() { return m_points->animVal(); }
|
| + RawPtr<SVGPointListTearOff> pointsFromJavascript() { return m_points->baseVal(); }
|
| + RawPtr<SVGPointListTearOff> animatedPoints() { return m_points->animVal(); }
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| @@ -47,7 +47,7 @@ private:
|
| void svgAttributeChanged(const QualifiedName&) final;
|
|
|
| private:
|
| - RefPtrWillBeMember<SVGAnimatedPointList> m_points;
|
| + Member<SVGAnimatedPointList> m_points;
|
|
|
| };
|
|
|
|
|