diff options
Diffstat (limited to 'WebCore/svg/SVGTests.h')
-rw-r--r-- | WebCore/svg/SVGTests.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/WebCore/svg/SVGTests.h b/WebCore/svg/SVGTests.h index b638c0a..c5bb70f 100644 --- a/WebCore/svg/SVGTests.h +++ b/WebCore/svg/SVGTests.h @@ -33,20 +33,21 @@ namespace WebCore { class SVGTests { public: - SVGTests(); - virtual ~SVGTests(); - SVGStringList* requiredFeatures() const; SVGStringList* requiredExtensions() const; SVGStringList* systemLanguage() const; - bool hasExtension(const String&) const; + bool hasExtension(const String&) const { return false; } bool isValid() const; bool parseMappedAttribute(Attribute*); bool isKnownAttribute(const QualifiedName&); + protected: + SVGTests(); + ~SVGTests(); + private: mutable RefPtr<SVGStringList> m_features; mutable RefPtr<SVGStringList> m_extensions; |