| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 public: | 32 public: |
| 33 SVGAnimatedPointList* points() { return m_points.get(); } | 33 SVGAnimatedPointList* points() { return m_points.get(); } |
| 34 | 34 |
| 35 PassRefPtr<SVGPointListTearOff> pointsFromJavascript() { return m_points->ba
seVal(); } | 35 PassRefPtr<SVGPointListTearOff> pointsFromJavascript() { return m_points->ba
seVal(); } |
| 36 PassRefPtr<SVGPointListTearOff> animatedPoints() { return m_points->animVal(
); } | 36 PassRefPtr<SVGPointListTearOff> animatedPoints() { return m_points->animVal(
); } |
| 37 | 37 |
| 38 protected: | 38 protected: |
| 39 SVGPolyElement(const QualifiedName&, Document&); | 39 SVGPolyElement(const QualifiedName&, Document&); |
| 40 | 40 |
| 41 private: | 41 private: |
| 42 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE FINAL; | 42 virtual void parseAttribute(const QualifiedName&, const AtomicString&) overr
ide final; |
| 43 virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE FINAL; | 43 virtual void svgAttributeChanged(const QualifiedName&) override final; |
| 44 | 44 |
| 45 private: | 45 private: |
| 46 RefPtr<SVGAnimatedPointList> m_points; | 46 RefPtr<SVGAnimatedPointList> m_points; |
| 47 | 47 |
| 48 }; | 48 }; |
| 49 | 49 |
| 50 inline bool isSVGPolyElement(const SVGElement& element) | 50 inline bool isSVGPolyElement(const SVGElement& element) |
| 51 { | 51 { |
| 52 return element.hasTagName(SVGNames::polygonTag) || element.hasTagName(SVGNam
es::polylineTag); | 52 return element.hasTagName(SVGNames::polygonTag) || element.hasTagName(SVGNam
es::polylineTag); |
| 53 } | 53 } |
| 54 | 54 |
| 55 DEFINE_SVGELEMENT_TYPE_CASTS_WITH_FUNCTION(SVGPolyElement); | 55 DEFINE_SVGELEMENT_TYPE_CASTS_WITH_FUNCTION(SVGPolyElement); |
| 56 | 56 |
| 57 } // namespace blink | 57 } // namespace blink |
| 58 | 58 |
| 59 #endif | 59 #endif |
| OLD | NEW |