summaryrefslogtreecommitdiffstats
path: root/WebCore/svg/DeprecatedSVGAnimatedPropertyTraits.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/svg/DeprecatedSVGAnimatedPropertyTraits.h')
-rw-r--r--WebCore/svg/DeprecatedSVGAnimatedPropertyTraits.h15
1 files changed, 1 insertions, 14 deletions
diff --git a/WebCore/svg/DeprecatedSVGAnimatedPropertyTraits.h b/WebCore/svg/DeprecatedSVGAnimatedPropertyTraits.h
index e20a4c7..3e31095 100644
--- a/WebCore/svg/DeprecatedSVGAnimatedPropertyTraits.h
+++ b/WebCore/svg/DeprecatedSVGAnimatedPropertyTraits.h
@@ -22,26 +22,13 @@
#define DeprecatedSVGAnimatedPropertyTraits_h
#if ENABLE(SVG)
-#include "PlatformString.h"
-#include "SVGTransformList.h"
+// FIXME: Remove this file!
namespace WebCore {
template<typename Type>
struct DeprecatedSVGAnimatedPropertyTraits : public Noncopyable { };
-// SVGAnimatedTransformList
-template<>
-struct DeprecatedSVGAnimatedPropertyTraits<SVGTransformList*> : public Noncopyable {
- typedef SVGTransformList* PassType;
- typedef SVGTransformList* ReturnType;
- typedef RefPtr<SVGTransformList> StoredType;
-
- static ReturnType null() { return 0; }
- static ReturnType toReturnType(const StoredType& type) { return type.get(); }
- static String toString(PassType type) { return type ? type->valueAsString() : String(); }
-};
-
}
#endif