summaryrefslogtreecommitdiffstats
path: root/WebCore/svg/SVGParserUtilities.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/svg/SVGParserUtilities.h')
-rw-r--r--WebCore/svg/SVGParserUtilities.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/WebCore/svg/SVGParserUtilities.h b/WebCore/svg/SVGParserUtilities.h
index cd6cbbe..69d6b12 100644
--- a/WebCore/svg/SVGParserUtilities.h
+++ b/WebCore/svg/SVGParserUtilities.h
@@ -30,12 +30,11 @@ typedef Vector<UnicodeRange> UnicodeRanges;
namespace WebCore {
- class Path;
class SVGPointList;
- class SVGPathSegList;
bool parseNumber(const UChar*& ptr, const UChar* end, float& number, bool skip = true);
bool parseNumberOptionalNumber(const String& s, float& h, float& v);
+ bool parseArcFlag(const UChar*& ptr, const UChar* end, bool& flag);
// SVG allows several different whitespace characters:
// http://www.w3.org/TR/SVG/paths.html#PathDataBNF
@@ -65,8 +64,6 @@ namespace WebCore {
}
bool pointsListFromSVGData(SVGPointList* pointsList, const String& points);
- bool pathFromSVGData(Path& path, const String& d);
- bool pathSegListFromSVGData(SVGPathSegList* pathSegList, const String& d, bool process = false);
Vector<String> parseDelimitedString(const String& input, const char seperator);
bool parseKerningUnicodeString(const String& input, UnicodeRanges&, HashSet<String>& stringList);
bool parseGlyphName(const String& input, HashSet<String>& values);