OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) Research In Motion Limited 2011. All rights reserved. | 2 * Copyright (C) Research In Motion Limited 2011. All rights reserved. |
3 * | 3 * |
4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
8 * | 8 * |
9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 28 matching lines...) Expand all Loading... |
39 AnimatedColor, | 39 AnimatedColor, |
40 AnimatedEnumeration, | 40 AnimatedEnumeration, |
41 AnimatedInteger, | 41 AnimatedInteger, |
42 AnimatedIntegerOptionalInteger, | 42 AnimatedIntegerOptionalInteger, |
43 AnimatedLength, | 43 AnimatedLength, |
44 AnimatedLengthList, | 44 AnimatedLengthList, |
45 AnimatedNumber, | 45 AnimatedNumber, |
46 AnimatedNumberList, | 46 AnimatedNumberList, |
47 AnimatedNumberOptionalNumber, | 47 AnimatedNumberOptionalNumber, |
48 AnimatedPath, | 48 AnimatedPath, |
| 49 AnimatedPoint, |
49 AnimatedPoints, | 50 AnimatedPoints, |
50 AnimatedPreserveAspectRatio, | 51 AnimatedPreserveAspectRatio, |
51 AnimatedRect, | 52 AnimatedRect, |
52 AnimatedString, | 53 AnimatedString, |
53 AnimatedTransformList, | 54 AnimatedTransformList, |
54 AnimatedUnknown | 55 AnimatedUnknown |
55 }; | 56 }; |
56 | 57 |
57 struct SVGPropertyInfo { | 58 struct SVGPropertyInfo { |
58 WTF_MAKE_FAST_ALLOCATED; | 59 WTF_MAKE_FAST_ALLOCATED; |
(...skipping 17 matching lines...) Expand all Loading... |
76 AnimatedPropertyState animatedPropertyState; | 77 AnimatedPropertyState animatedPropertyState; |
77 const QualifiedName& attributeName; | 78 const QualifiedName& attributeName; |
78 const AtomicString& propertyIdentifier; | 79 const AtomicString& propertyIdentifier; |
79 SynchronizeProperty synchronizeProperty; | 80 SynchronizeProperty synchronizeProperty; |
80 LookupOrCreateWrapperForAnimatedProperty lookupOrCreateWrapperForAnimatedPro
perty; | 81 LookupOrCreateWrapperForAnimatedProperty lookupOrCreateWrapperForAnimatedPro
perty; |
81 }; | 82 }; |
82 | 83 |
83 } | 84 } |
84 | 85 |
85 #endif // SVGPropertyInfo_h | 86 #endif // SVGPropertyInfo_h |
OLD | NEW |