summaryrefslogtreecommitdiffstats
path: root/WebCore/svg/SVGFontFaceSrcElement.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/svg/SVGFontFaceSrcElement.h')
-rw-r--r--WebCore/svg/SVGFontFaceSrcElement.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/WebCore/svg/SVGFontFaceSrcElement.h b/WebCore/svg/SVGFontFaceSrcElement.h
index 0277e9a..e6f8d30 100644
--- a/WebCore/svg/SVGFontFaceSrcElement.h
+++ b/WebCore/svg/SVGFontFaceSrcElement.h
@@ -24,13 +24,18 @@
#include "SVGElement.h"
namespace WebCore {
+
class CSSValueList;
+
class SVGFontFaceSrcElement : public SVGElement {
public:
- SVGFontFaceSrcElement(const QualifiedName&, Document*);
-
+ static PassRefPtr<SVGFontFaceSrcElement> create(const QualifiedName&, Document*);
+
PassRefPtr<CSSValueList> srcValue() const;
+ private:
+ SVGFontFaceSrcElement(const QualifiedName&, Document*);
+
virtual void childrenChanged(bool changedByParser = false, Node* beforeChange = 0, Node* afterChange = 0, int childCountDelta = 0);
};