| Index: third_party/WebKit/Source/core/svg/SVGRectElement.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGRectElement.h b/third_party/WebKit/Source/core/svg/SVGRectElement.h
|
| index 3963ebba10b92aca9792cb1948da91270bb14f99..651cdc9d7d57cecbb6e0d01a1f155ed56e9bc072 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGRectElement.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGRectElement.h
|
| @@ -57,12 +57,12 @@ private:
|
|
|
| LayoutObject* createLayoutObject(const ComputedStyle&) override;
|
|
|
| - RefPtrWillBeMember<SVGAnimatedLength> m_x;
|
| - RefPtrWillBeMember<SVGAnimatedLength> m_y;
|
| - RefPtrWillBeMember<SVGAnimatedLength> m_width;
|
| - RefPtrWillBeMember<SVGAnimatedLength> m_height;
|
| - RefPtrWillBeMember<SVGAnimatedLength> m_rx;
|
| - RefPtrWillBeMember<SVGAnimatedLength> m_ry;
|
| + Member<SVGAnimatedLength> m_x;
|
| + Member<SVGAnimatedLength> m_y;
|
| + Member<SVGAnimatedLength> m_width;
|
| + Member<SVGAnimatedLength> m_height;
|
| + Member<SVGAnimatedLength> m_rx;
|
| + Member<SVGAnimatedLength> m_ry;
|
| };
|
|
|
| } // namespace blink
|
|
|