| Index: Source/core/svg/SVGViewSpec.h
|
| diff --git a/Source/core/svg/SVGViewSpec.h b/Source/core/svg/SVGViewSpec.h
|
| index 0b7644b72b78b56565d1c7223c046f362352da4d..a3e94732b17450f77ea41807f9bd1674135bc153 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"
|
| @@ -64,9 +62,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*);
|
|
|
| @@ -82,8 +77,6 @@ private:
|
| // FIXME(oilpan): This is back-ptr to be cleared from contextElement.
|
| SVGSVGElement* m_contextElement;
|
| SVGTransformList m_transform;
|
| - RefPtr<SVGAnimatedRect> m_viewBox;
|
| - RefPtr<SVGAnimatedPreserveAspectRatio> m_preserveAspectRatio;
|
| String m_viewTargetString;
|
| };
|
|
|
|
|