| Index: Source/core/svg/SVGPathParser.h
 | 
| diff --git a/Source/core/svg/SVGPathParser.h b/Source/core/svg/SVGPathParser.h
 | 
| index 877dc1cd3315ea1770c17459396b80067d02bbb8..eb809f5279de0b5e08a77bdfaf804050eb20e10f 100644
 | 
| --- a/Source/core/svg/SVGPathParser.h
 | 
| +++ b/Source/core/svg/SVGPathParser.h
 | 
| @@ -49,24 +49,9 @@ public:
 | 
|  
 | 
|  private:
 | 
|      bool initialCommandIsMoveTo();
 | 
| -    bool decomposeArcToCubic(const FloatPoint& currentPoint, const PathSegmentData&);
 | 
| -    void emitMoveToSegment(PathSegmentData&);
 | 
| -    void emitLineToSegment(PathSegmentData&);
 | 
| -    void emitLineToHorizontalSegment(PathSegmentData&);
 | 
| -    void emitLineToVerticalSegment(PathSegmentData&);
 | 
| -    void emitCurveToCubicSegment(PathSegmentData&);
 | 
| -    void emitCurveToCubicSmoothSegment(PathSegmentData&);
 | 
| -    void emitCurveToQuadraticSegment(PathSegmentData&);
 | 
| -    void emitCurveToQuadraticSmoothSegment(PathSegmentData&);
 | 
| -    void emitArcToSegment(PathSegmentData&);
 | 
|  
 | 
|      RawPtrWillBeMember<SVGPathSource> m_source;
 | 
|      RawPtrWillBeMember<SVGPathConsumer> m_consumer;
 | 
| -    PathCoordinateMode m_mode;
 | 
| -    SVGPathSegType m_lastCommand;
 | 
| -    FloatPoint m_controlPoint;
 | 
| -    FloatPoint m_currentPoint;
 | 
| -    FloatPoint m_subPathPoint;
 | 
|  };
 | 
|  
 | 
|  } // namespace blink
 | 
| 
 |