OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005 Nikolas Zimmermann <zimmermann@kde.org> |
3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org> |
4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> | 4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> |
5 * Copyright (C) 2008 Apple Inc. All rights reserved. | 5 * Copyright (C) 2008 Apple Inc. All rights reserved. |
6 * Copyright (C) 2008 Cameron McCormack <cam@mcc.id.au> | 6 * Copyright (C) 2008 Cameron McCormack <cam@mcc.id.au> |
7 * Copyright (C) Research In Motion Limited 2011. All rights reserved. | 7 * Copyright (C) Research In Motion Limited 2011. All rights reserved. |
8 * | 8 * |
9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
11 * License as published by the Free Software Foundation; either | 11 * License as published by the Free Software Foundation; either |
12 * version 2 of the License, or (at your option) any later version. | 12 * version 2 of the License, or (at your option) any later version. |
13 * | 13 * |
14 * This library is distributed in the hope that it will be useful, | 14 * This library is distributed in the hope that it will be useful, |
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
17 * Library General Public License for more details. | 17 * Library General Public License for more details. |
18 * | 18 * |
19 * You should have received a copy of the GNU Library General Public License | 19 * You should have received a copy of the GNU Library General Public License |
20 * along with this library; see the file COPYING.LIB. If not, write to | 20 * along with this library; see the file COPYING.LIB. If not, write to |
21 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 21 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
22 * Boston, MA 02110-1301, USA. | 22 * Boston, MA 02110-1301, USA. |
23 */ | 23 */ |
24 | 24 |
25 #ifndef SVGAnimationElement_h | 25 #ifndef SVGAnimationElement_h |
26 #define SVGAnimationElement_h | 26 #define SVGAnimationElement_h |
27 | 27 |
28 #if ENABLE(SVG) | |
29 #include "core/platform/graphics/UnitBezier.h" | 28 #include "core/platform/graphics/UnitBezier.h" |
30 #include "core/svg/ElementTimeControl.h" | 29 #include "core/svg/ElementTimeControl.h" |
31 #include "core/svg/SVGAnimatedBoolean.h" | 30 #include "core/svg/SVGAnimatedBoolean.h" |
32 #include "core/svg/SVGExternalResourcesRequired.h" | 31 #include "core/svg/SVGExternalResourcesRequired.h" |
33 #include "core/svg/SVGStringList.h" | 32 #include "core/svg/SVGStringList.h" |
34 #include "core/svg/SVGTests.h" | 33 #include "core/svg/SVGTests.h" |
35 #include "core/svg/animation/SMILTime.h" | 34 #include "core/svg/animation/SMILTime.h" |
36 #include "core/svg/animation/SVGSMILElement.h" | 35 #include "core/svg/animation/SVGSMILElement.h" |
37 | 36 |
38 namespace WebCore { | 37 namespace WebCore { |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 Vector<UnitBezier> m_keySplines; | 247 Vector<UnitBezier> m_keySplines; |
249 String m_lastValuesAnimationFrom; | 248 String m_lastValuesAnimationFrom; |
250 String m_lastValuesAnimationTo; | 249 String m_lastValuesAnimationTo; |
251 bool m_hasInvalidCSSAttributeType; | 250 bool m_hasInvalidCSSAttributeType; |
252 CalcMode m_calcMode; | 251 CalcMode m_calcMode; |
253 AnimationMode m_animationMode; | 252 AnimationMode m_animationMode; |
254 }; | 253 }; |
255 | 254 |
256 } // namespace WebCore | 255 } // namespace WebCore |
257 | 256 |
258 #endif // ENABLE(SVG) | |
259 #endif // SVGAnimationElement_h | 257 #endif // SVGAnimationElement_h |
OLD | NEW |