| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Rob Buis <buis@kde.org> |
| 4 * Copyright (C) 2014 Google, Inc. | 4 * Copyright (C) 2014 Google, Inc. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 StaticNodeList* collectIntersectionOrEnclosureList( | 149 StaticNodeList* collectIntersectionOrEnclosureList( |
| 150 const FloatRect&, | 150 const FloatRect&, |
| 151 SVGElement*, | 151 SVGElement*, |
| 152 GeometryMatchingMode) const; | 152 GeometryMatchingMode) const; |
| 153 | 153 |
| 154 Member<SVGAnimatedLength> m_x; | 154 Member<SVGAnimatedLength> m_x; |
| 155 Member<SVGAnimatedLength> m_y; | 155 Member<SVGAnimatedLength> m_y; |
| 156 Member<SVGAnimatedLength> m_width; | 156 Member<SVGAnimatedLength> m_width; |
| 157 Member<SVGAnimatedLength> m_height; | 157 Member<SVGAnimatedLength> m_height; |
| 158 | 158 |
| 159 AffineTransform localCoordinateSpaceTransform( | 159 AffineTransform localCoordinateSpaceTransform() const override; |
| 160 SVGElement::CTMScope) const override; | |
| 161 | 160 |
| 162 Member<SMILTimeContainer> m_timeContainer; | 161 Member<SMILTimeContainer> m_timeContainer; |
| 163 Member<SVGPoint> m_translation; | 162 Member<SVGPoint> m_translation; |
| 164 Member<SVGViewSpec> m_viewSpec; | 163 Member<SVGViewSpec> m_viewSpec; |
| 165 float m_currentScale; | 164 float m_currentScale; |
| 166 | 165 |
| 167 friend class SVGCurrentTranslateTearOff; | 166 friend class SVGCurrentTranslateTearOff; |
| 168 }; | 167 }; |
| 169 | 168 |
| 170 } // namespace blink | 169 } // namespace blink |
| 171 | 170 |
| 172 #endif // SVGSVGElement_h | 171 #endif // SVGSVGElement_h |
| OLD | NEW |