summaryrefslogtreecommitdiffstats
path: root/WebCore/svg/SVGPathSeg.h
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2008-10-21 07:00:00 -0700
committerThe Android Open Source Project <initial-contribution@android.com>2008-10-21 07:00:00 -0700
commit9364f22aed35e1a1e9d07c121510f80be3ab0502 (patch)
treed49911209b132da58d838efa852daf28d516df21 /WebCore/svg/SVGPathSeg.h
parent87eb0cb35bad8784770ebc807e6c982432e47107 (diff)
downloadexternal_webkit-9364f22aed35e1a1e9d07c121510f80be3ab0502.zip
external_webkit-9364f22aed35e1a1e9d07c121510f80be3ab0502.tar.gz
external_webkit-9364f22aed35e1a1e9d07c121510f80be3ab0502.tar.bz2
Initial Contribution
Diffstat (limited to 'WebCore/svg/SVGPathSeg.h')
-rw-r--r--WebCore/svg/SVGPathSeg.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/WebCore/svg/SVGPathSeg.h b/WebCore/svg/SVGPathSeg.h
index ed8ead4..11f714b 100644
--- a/WebCore/svg/SVGPathSeg.h
+++ b/WebCore/svg/SVGPathSeg.h
@@ -29,12 +29,15 @@
#include <wtf/RefCounted.h>
-namespace WebCore {
+namespace WebCore
+{
class SVGPathElement;
class SVGStyledElement;
- class SVGPathSeg : public RefCounted<SVGPathSeg> {
+ class SVGPathSeg : public RefCounted<SVGPathSeg>
+ {
public:
+ SVGPathSeg() { }
virtual ~SVGPathSeg() { }
enum SVGPathSegType {
@@ -65,9 +68,6 @@ namespace WebCore {
virtual String toString() const { return ""; }
const QualifiedName& associatedAttributeName() const { return SVGNames::dAttr; }
-
- protected:
- SVGPathSeg() { }
};
} // namespace WebCore