Index: Source/core/svg/SVGPatternElement.h |
diff --git a/Source/core/svg/SVGPatternElement.h b/Source/core/svg/SVGPatternElement.h |
index 1f0f640c0e69b5d5491f7f341edcb5455b608216..2ae19ba67a31a9d38008fbe0d381a93bec411578 100644 |
--- a/Source/core/svg/SVGPatternElement.h |
+++ b/Source/core/svg/SVGPatternElement.h |
@@ -51,6 +51,8 @@ public: |
SVGAnimatedLength* y() const { return m_y.get(); } |
SVGAnimatedLength* width() const { return m_width.get(); } |
SVGAnimatedLength* height() const { return m_height.get(); } |
+ SVGAnimatedTransformList* patternTransform() { return m_patternTransform.get(); } |
+ const SVGAnimatedTransformList* patternTransform() const { return m_patternTransform.get(); } |
SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>* patternUnits() { return m_patternUnits.get(); } |
SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>* patternContentUnits() { return m_patternContentUnits.get(); } |
const SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>* patternUnits() const { return m_patternUnits.get(); } |
@@ -75,10 +77,10 @@ private: |
RefPtr<SVGAnimatedLength> m_y; |
RefPtr<SVGAnimatedLength> m_width; |
RefPtr<SVGAnimatedLength> m_height; |
+ RefPtr<SVGAnimatedTransformList> m_patternTransform; |
RefPtr<SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType> > m_patternUnits; |
RefPtr<SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType> > m_patternContentUnits; |
BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGPatternElement) |
- DECLARE_ANIMATED_TRANSFORM_LIST(PatternTransform, patternTransform) |
END_DECLARE_ANIMATED_PROPERTIES |
}; |