| Index: Source/core/svg/SVGSVGElement.h
|
| diff --git a/Source/core/svg/SVGSVGElement.h b/Source/core/svg/SVGSVGElement.h
|
| index 395f4d96529277437fd73c8be4f5f3af64e6db70..b4a662d208dbaef90e80dcc60d8ed64330ee1afd 100644
|
| --- a/Source/core/svg/SVGSVGElement.h
|
| +++ b/Source/core/svg/SVGSVGElement.h
|
| @@ -23,8 +23,6 @@
|
|
|
| #include "core/svg/SVGAnimatedBoolean.h"
|
| #include "core/svg/SVGAnimatedLength.h"
|
| -#include "core/svg/SVGAnimatedPreserveAspectRatio.h"
|
| -#include "core/svg/SVGAnimatedRect.h"
|
| #include "core/svg/SVGFitToViewBox.h"
|
| #include "core/svg/SVGGraphicsElement.h"
|
| #include "core/svg/SVGLengthTearOff.h"
|
| @@ -129,14 +127,10 @@ public:
|
| SVGZoomAndPanType zoomAndPan() const { return m_zoomAndPan; }
|
| void setZoomAndPan(unsigned short zoomAndPan) { m_zoomAndPan = SVGZoomAndPan::parseFromNumber(zoomAndPan); }
|
|
|
| - bool hasEmptyViewBox() const { return m_viewBox->currentValue()->isValid() && m_viewBox->currentValue()->value().isEmpty(); }
|
| -
|
| SVGAnimatedLength* x() const { return m_x.get(); }
|
| SVGAnimatedLength* y() const { return m_y.get(); }
|
| SVGAnimatedLength* width() const { return m_width.get(); }
|
| SVGAnimatedLength* height() const { return m_height.get(); }
|
| - SVGAnimatedRect* viewBox() const { return m_viewBox.get(); }
|
| - SVGAnimatedPreserveAspectRatio* preserveAspectRatio() { return m_preserveAspectRatio.get(); }
|
|
|
| private:
|
| explicit SVGSVGElement(Document&);
|
| @@ -171,8 +165,6 @@ private:
|
| RefPtr<SVGAnimatedLength> m_y;
|
| RefPtr<SVGAnimatedLength> m_width;
|
| RefPtr<SVGAnimatedLength> m_height;
|
| - RefPtr<SVGAnimatedRect> m_viewBox;
|
| - RefPtr<SVGAnimatedPreserveAspectRatio> m_preserveAspectRatio;
|
| BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGSVGElement)
|
| END_DECLARE_ANIMATED_PROPERTIES
|
|
|
|
|