| Index: Source/core/svg/SVGPathSeg.cpp
|
| diff --git a/Source/core/svg/SVGPathSeg.cpp b/Source/core/svg/SVGPathSeg.cpp
|
| index 246546f033dc1d2f506a968cf101f8ef6fad4b44..ebe2602b9349f93554931ca20a49813fcf36fcfa 100644
|
| --- a/Source/core/svg/SVGPathSeg.cpp
|
| +++ b/Source/core/svg/SVGPathSeg.cpp
|
| @@ -36,11 +36,17 @@
|
| namespace blink {
|
|
|
| SVGPathSeg::SVGPathSeg(SVGPathElement* contextElement)
|
| - : m_ownerList(0)
|
| + : m_ownerList(nullptr)
|
| , m_contextElement(contextElement)
|
| {
|
| }
|
|
|
| +void SVGPathSeg::trace(Visitor* visitor)
|
| +{
|
| + visitor->trace(m_ownerList);
|
| + visitor->trace(m_contextElement);
|
| +}
|
| +
|
| void SVGPathSeg::commitChange()
|
| {
|
| if (m_contextElement)
|
|
|