| Index: Source/core/svg/SVGViewSpec.h
|
| diff --git a/Source/core/svg/SVGViewSpec.h b/Source/core/svg/SVGViewSpec.h
|
| index 06f6d31d241d4f9a4401b7c2657c7c15c7f0163f..17308eece2ac53996df80576dca54aeee90d28a4 100644
|
| --- a/Source/core/svg/SVGViewSpec.h
|
| +++ b/Source/core/svg/SVGViewSpec.h
|
| @@ -71,14 +71,14 @@ public:
|
| SVGTransformList transformBaseValue() const { return m_transform; }
|
|
|
| // Custom animated 'viewBox' property.
|
| - PassRefPtr<SVGAnimatedRect> viewBoxAnimated();
|
| - FloatRect& viewBox() { return m_viewBox; }
|
| + PassRefPtr<SVGAnimatedRect> viewBox();
|
| + FloatRect& viewBoxCurrentValue() { return m_viewBox; }
|
| FloatRect viewBoxBaseValue() const { return m_viewBox; }
|
| void setViewBoxBaseValue(const FloatRect& viewBox) { m_viewBox = viewBox; }
|
|
|
| // Custom animated 'preserveAspectRatio' property.
|
| - PassRefPtr<SVGAnimatedPreserveAspectRatio> preserveAspectRatioAnimated();
|
| - SVGPreserveAspectRatio& preserveAspectRatio() { return m_preserveAspectRatio; }
|
| + PassRefPtr<SVGAnimatedPreserveAspectRatio> preserveAspectRatio();
|
| + SVGPreserveAspectRatio& preserveAspectRatioCurrentValue() { return m_preserveAspectRatio; }
|
| SVGPreserveAspectRatio preserveAspectRatioBaseValue() const { return m_preserveAspectRatio; }
|
| void setPreserveAspectRatioBaseValue(const SVGPreserveAspectRatio& preserveAspectRatio) { m_preserveAspectRatio = preserveAspectRatio; }
|
|
|
|
|