| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 StaticNodeList* CollectIntersectionOrEnclosureList( | 150 StaticNodeList* CollectIntersectionOrEnclosureList( |
| 151 const FloatRect&, | 151 const FloatRect&, |
| 152 SVGElement*, | 152 SVGElement*, |
| 153 GeometryMatchingMode) const; | 153 GeometryMatchingMode) const; |
| 154 | 154 |
| 155 Member<SVGAnimatedLength> x_; | 155 Member<SVGAnimatedLength> x_; |
| 156 Member<SVGAnimatedLength> y_; | 156 Member<SVGAnimatedLength> y_; |
| 157 Member<SVGAnimatedLength> width_; | 157 Member<SVGAnimatedLength> width_; |
| 158 Member<SVGAnimatedLength> height_; | 158 Member<SVGAnimatedLength> height_; |
| 159 | 159 |
| 160 AffineTransform LocalCoordinateSpaceTransform() const override; | 160 AffineTransform LocalCoordinateSpaceTransform(CTMScope) const override; |
| 161 | 161 |
| 162 Member<SMILTimeContainer> time_container_; | 162 Member<SMILTimeContainer> time_container_; |
| 163 Member<SVGPoint> translation_; | 163 Member<SVGPoint> translation_; |
| 164 Member<SVGViewSpec> view_spec_; | 164 Member<SVGViewSpec> view_spec_; |
| 165 float current_scale_; | 165 float current_scale_; |
| 166 | 166 |
| 167 friend class SVGCurrentTranslateTearOff; | 167 friend class SVGCurrentTranslateTearOff; |
| 168 }; | 168 }; |
| 169 | 169 |
| 170 } // namespace blink | 170 } // namespace blink |
| 171 | 171 |
| 172 #endif // SVGSVGElement_h | 172 #endif // SVGSVGElement_h |
| OLD | NEW |