| Index: Source/core/svg/SVGPathUtilities.h
|
| diff --git a/Source/core/svg/SVGPathUtilities.h b/Source/core/svg/SVGPathUtilities.h
|
| index 0b501dda281334231052cb7d362656fa65e5c6fe..82a6eaa372b666c04aebc42d2a46d52f6f6a6cbc 100644
|
| --- a/Source/core/svg/SVGPathUtilities.h
|
| +++ b/Source/core/svg/SVGPathUtilities.h
|
| @@ -35,21 +35,21 @@ class SVGPathSegList;
|
|
|
| // String/SVGPathByteStream -> Path
|
| bool buildPathFromString(const String&, Path&);
|
| -bool buildPathFromByteStream(const SVGPathByteStream*, Path&);
|
| +bool buildPathFromByteStream(const SVGPathByteStream&, Path&);
|
|
|
| // SVGPathSegList/String -> SVGPathByteStream
|
| -bool appendSVGPathByteStreamFromSVGPathSeg(PassRefPtrWillBeRawPtr<SVGPathSeg>, SVGPathByteStream*, PathParsingMode);
|
| -bool buildSVGPathByteStreamFromString(const String&, SVGPathByteStream*, PathParsingMode);
|
| +bool appendSVGPathByteStreamFromSVGPathSeg(PassRefPtrWillBeRawPtr<SVGPathSeg>, SVGPathByteStream&, PathParsingMode);
|
| +bool buildSVGPathByteStreamFromString(const String&, SVGPathByteStream&, PathParsingMode);
|
|
|
| // SVGPathByteStream/SVGPathSegList -> String
|
| -bool buildStringFromByteStream(const SVGPathByteStream*, String&, PathParsingMode);
|
| +bool buildStringFromByteStream(const SVGPathByteStream&, String&, PathParsingMode);
|
| bool buildStringFromSVGPathSegList(PassRefPtrWillBeRawPtr<SVGPathSegList>, String&, PathParsingMode);
|
|
|
| -bool addToSVGPathByteStream(SVGPathByteStream*, const SVGPathByteStream*, unsigned repeatCount = 1);
|
| +bool addToSVGPathByteStream(SVGPathByteStream&, const SVGPathByteStream&, unsigned repeatCount = 1);
|
|
|
| -bool getSVGPathSegAtLengthFromSVGPathByteStream(const SVGPathByteStream*, float length, unsigned& pathSeg);
|
| -bool getTotalLengthOfSVGPathByteStream(const SVGPathByteStream*, float& totalLength);
|
| -bool getPointAtLengthOfSVGPathByteStream(const SVGPathByteStream*, float length, FloatPoint&);
|
| +bool getSVGPathSegAtLengthFromSVGPathByteStream(const SVGPathByteStream&, float length, unsigned& pathSeg);
|
| +bool getTotalLengthOfSVGPathByteStream(const SVGPathByteStream&, float& totalLength);
|
| +bool getPointAtLengthOfSVGPathByteStream(const SVGPathByteStream&, float length, FloatPoint&);
|
|
|
| } // namespace blink
|
|
|
|
|