summaryrefslogtreecommitdiffstats
path: root/WebCore/svg/SVGDescElement.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/svg/SVGDescElement.h')
-rw-r--r--WebCore/svg/SVGDescElement.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/WebCore/svg/SVGDescElement.h b/WebCore/svg/SVGDescElement.h
index 23374ef..994007c 100644
--- a/WebCore/svg/SVGDescElement.h
+++ b/WebCore/svg/SVGDescElement.h
@@ -30,11 +30,13 @@ namespace WebCore {
class SVGDescElement : public SVGStyledElement,
public SVGLangSpace {
public:
- SVGDescElement(const QualifiedName&, Document*);
- virtual ~SVGDescElement();
+ static PassRefPtr<SVGDescElement> create(const QualifiedName&, Document*);
String description() const;
+ private:
+ SVGDescElement(const QualifiedName&, Document*);
+
virtual bool rendererIsNeeded(RenderStyle*) { return false; }
};