diff options
Diffstat (limited to 'Source/WebCore/svg/SVGPathUtilities.h')
-rw-r--r-- | Source/WebCore/svg/SVGPathUtilities.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/WebCore/svg/SVGPathUtilities.h b/Source/WebCore/svg/SVGPathUtilities.h index f24aa009f..bedaa2189 100644 --- a/Source/WebCore/svg/SVGPathUtilities.h +++ b/Source/WebCore/svg/SVGPathUtilities.h @@ -23,6 +23,7 @@ #if ENABLE(SVG) #include "SVGPathByteStream.h" #include "SVGPathConsumer.h" +#include "SVGPathSeg.h" #include <wtf/OwnPtr.h> #include <wtf/text/WTFString.h> @@ -39,6 +40,7 @@ bool buildPathFromByteStream(SVGPathByteStream*, Path&); // SVGPathSegList/String -> SVGPathByteStream bool buildSVGPathByteStreamFromSVGPathSegList(const SVGPathSegList&, SVGPathByteStream*, PathParsingMode); +bool appendSVGPathByteStreamFromSVGPathSeg(PassRefPtr<SVGPathSeg>, SVGPathByteStream*, PathParsingMode); bool buildSVGPathByteStreamFromString(const String&, SVGPathByteStream*, PathParsingMode); // SVGPathByteStream/SVGPathSegList -> String |