| Index: Source/core/svg/SVGViewSpec.h
|
| diff --git a/Source/core/svg/SVGViewSpec.h b/Source/core/svg/SVGViewSpec.h
|
| index effdea0af688f1402b845af9f8de30a5cac87d6d..28b2698446219399be67115f0b67adeece6a3244 100644
|
| --- a/Source/core/svg/SVGViewSpec.h
|
| +++ b/Source/core/svg/SVGViewSpec.h
|
| @@ -21,8 +21,6 @@
|
| #define SVGViewSpec_h
|
|
|
| #include "bindings/v8/ScriptWrappable.h"
|
| -#include "core/svg/SVGAnimatedPreserveAspectRatio.h"
|
| -#include "core/svg/SVGAnimatedRect.h"
|
| #include "core/svg/SVGFitToViewBox.h"
|
| #include "core/svg/SVGSVGElement.h"
|
| #include "core/svg/SVGTransformList.h"
|
| @@ -70,9 +68,6 @@ public:
|
| SVGTransformListPropertyTearOff* transform();
|
| SVGTransformList transformBaseValue() const { return m_transform; }
|
|
|
| - SVGAnimatedRect* viewBox() { return m_viewBox.get(); }
|
| - SVGAnimatedPreserveAspectRatio* preserveAspectRatio() { return m_preserveAspectRatio.get(); }
|
| -
|
| private:
|
| explicit SVGViewSpec(SVGSVGElement*);
|
|
|
| @@ -90,8 +85,6 @@ private:
|
|
|
| SVGZoomAndPanType m_zoomAndPan;
|
| SVGTransformList m_transform;
|
| - RefPtr<SVGAnimatedRect> m_viewBox;
|
| - RefPtr<SVGAnimatedPreserveAspectRatio> m_preserveAspectRatio;
|
| String m_viewTargetString;
|
| };
|
|
|
|
|