| Index: Source/core/svg/SVGPatternElement.h
|
| diff --git a/Source/core/svg/SVGPatternElement.h b/Source/core/svg/SVGPatternElement.h
|
| index f92156b1e8643485ba7b89ae533831dbac0ae1f4..0422c92c3ded8dd00ccbe4dbcb6ac61f5093010b 100644
|
| --- a/Source/core/svg/SVGPatternElement.h
|
| +++ b/Source/core/svg/SVGPatternElement.h
|
| @@ -25,8 +25,6 @@
|
| #include "core/svg/SVGAnimatedBoolean.h"
|
| #include "core/svg/SVGAnimatedEnumeration.h"
|
| #include "core/svg/SVGAnimatedLength.h"
|
| -#include "core/svg/SVGAnimatedPreserveAspectRatio.h"
|
| -#include "core/svg/SVGAnimatedRect.h"
|
| #include "core/svg/SVGAnimatedTransformList.h"
|
| #include "core/svg/SVGElement.h"
|
| #include "core/svg/SVGFitToViewBox.h"
|
| @@ -53,8 +51,6 @@ public:
|
| 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() const { return m_preserveAspectRatio.get(); }
|
| SVGAnimatedString* href() { return m_href.get(); }
|
|
|
| private:
|
| @@ -76,8 +72,6 @@ private:
|
| RefPtr<SVGAnimatedLength> m_y;
|
| RefPtr<SVGAnimatedLength> m_width;
|
| RefPtr<SVGAnimatedLength> m_height;
|
| - RefPtr<SVGAnimatedRect> m_viewBox;
|
| - RefPtr<SVGAnimatedPreserveAspectRatio> m_preserveAspectRatio;
|
| RefPtr<SVGAnimatedString> m_href;
|
| BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGPatternElement)
|
| DECLARE_ANIMATED_ENUMERATION(PatternUnits, patternUnits, SVGUnitTypes::SVGUnitType)
|
|
|