Index: Source/WebCore/svg/SVGViewSpec.h |
=================================================================== |
--- Source/WebCore/svg/SVGViewSpec.h (revision 141793) |
+++ Source/WebCore/svg/SVGViewSpec.h (working copy) |
@@ -52,7 +52,6 @@ |
SVGElement* viewTarget() const; |
String viewBoxString() const; |
- void setPreserveAspectRatioString(const String&); |
String preserveAspectRatioString() const; |
void setTransformString(const String&); |
@@ -74,21 +73,13 @@ |
SVGTransformList transformBaseValue() const { return m_transform; } |
// Custom animated 'viewBox' property. |
- PassRefPtr<SVGAnimatedRect> viewBoxAnimated() |
- { |
- return static_pointer_cast<SVGAnimatedRect>(lookupOrCreateViewBoxWrapper(this)); |
- } |
- |
+ PassRefPtr<SVGAnimatedRect> viewBoxAnimated(); |
FloatRect& viewBox() { return m_viewBox; } |
FloatRect viewBoxBaseValue() const { return m_viewBox; } |
void setViewBoxBaseValue(const FloatRect& viewBox) { m_viewBox = viewBox; } |
// Custom animated 'preserveAspectRatio' property. |
- PassRefPtr<SVGAnimatedPreserveAspectRatio> preserveAspectRatioAnimated() |
- { |
- return static_pointer_cast<SVGAnimatedPreserveAspectRatio>(lookupOrCreatePreserveAspectRatioWrapper(this)); |
- } |
- |
+ PassRefPtr<SVGAnimatedPreserveAspectRatio> preserveAspectRatioAnimated(); |
SVGPreserveAspectRatio& preserveAspectRatio() { return m_preserveAspectRatio; } |
SVGPreserveAspectRatio preserveAspectRatioBaseValue() const { return m_preserveAspectRatio; } |
void setPreserveAspectRatioBaseValue(const SVGPreserveAspectRatio& preserveAspectRatio) { m_preserveAspectRatio = preserveAspectRatio; } |