| 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 10 matching lines...) Expand all Loading... |
| 21 #ifndef SVGPathElement_h | 21 #ifndef SVGPathElement_h |
| 22 #define SVGPathElement_h | 22 #define SVGPathElement_h |
| 23 | 23 |
| 24 #include "core/SVGNames.h" | 24 #include "core/SVGNames.h" |
| 25 #include "core/svg/SVGAnimatedBoolean.h" | 25 #include "core/svg/SVGAnimatedBoolean.h" |
| 26 #include "core/svg/SVGAnimatedNumber.h" | 26 #include "core/svg/SVGAnimatedNumber.h" |
| 27 #include "core/svg/SVGAnimatedPath.h" | 27 #include "core/svg/SVGAnimatedPath.h" |
| 28 #include "core/svg/SVGGeometryElement.h" | 28 #include "core/svg/SVGGeometryElement.h" |
| 29 #include "core/svg/SVGPathByteStream.h" | 29 #include "core/svg/SVGPathByteStream.h" |
| 30 #include "platform/heap/Handle.h" | 30 #include "platform/heap/Handle.h" |
| 31 #include "wtf/WeakPtr.h" | |
| 32 | 31 |
| 33 namespace blink { | 32 namespace blink { |
| 34 | 33 |
| 35 class SVGPathSegArcAbs; | 34 class SVGPathSegArcAbs; |
| 36 class SVGPathSegArcRel; | 35 class SVGPathSegArcRel; |
| 37 class SVGPathSegClosePath; | 36 class SVGPathSegClosePath; |
| 38 class SVGPathSegLinetoAbs; | 37 class SVGPathSegLinetoAbs; |
| 39 class SVGPathSegLinetoRel; | 38 class SVGPathSegLinetoRel; |
| 40 class SVGPathSegMovetoAbs; | 39 class SVGPathSegMovetoAbs; |
| 41 class SVGPathSegMovetoRel; | 40 class SVGPathSegMovetoRel; |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 | 110 |
| 112 void invalidateMPathDependencies(); | 111 void invalidateMPathDependencies(); |
| 113 | 112 |
| 114 RefPtrWillBeMember<SVGAnimatedNumber> m_pathLength; | 113 RefPtrWillBeMember<SVGAnimatedNumber> m_pathLength; |
| 115 RefPtrWillBeMember<SVGAnimatedPath> m_pathSegList; | 114 RefPtrWillBeMember<SVGAnimatedPath> m_pathSegList; |
| 116 }; | 115 }; |
| 117 | 116 |
| 118 } // namespace blink | 117 } // namespace blink |
| 119 | 118 |
| 120 #endif // SVGPathElement_h | 119 #endif // SVGPathElement_h |
| OLD | NEW |