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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 AnimatedLengthList, | 44 AnimatedLengthList, |
45 AnimatedNumber, | 45 AnimatedNumber, |
46 AnimatedNumberList, | 46 AnimatedNumberList, |
47 AnimatedNumberOptionalNumber, | 47 AnimatedNumberOptionalNumber, |
48 AnimatedPath, | 48 AnimatedPath, |
49 AnimatedPoint, | 49 AnimatedPoint, |
50 AnimatedPoints, | 50 AnimatedPoints, |
51 AnimatedPreserveAspectRatio, | 51 AnimatedPreserveAspectRatio, |
52 AnimatedRect, | 52 AnimatedRect, |
53 AnimatedString, | 53 AnimatedString, |
| 54 AnimatedStringList, |
54 AnimatedTransformList, | 55 AnimatedTransformList, |
55 AnimatedUnknown | 56 AnimatedUnknown |
56 }; | 57 }; |
57 | 58 |
58 struct SVGPropertyInfo { | 59 struct SVGPropertyInfo { |
59 WTF_MAKE_FAST_ALLOCATED; | 60 WTF_MAKE_FAST_ALLOCATED; |
60 public: | 61 public: |
61 typedef void (*SynchronizeProperty)(SVGElement*); | 62 typedef void (*SynchronizeProperty)(SVGElement*); |
62 typedef PassRefPtr<SVGAnimatedProperty> (*LookupOrCreateWrapperForAnimatedPr
operty)(SVGElement*); | 63 typedef PassRefPtr<SVGAnimatedProperty> (*LookupOrCreateWrapperForAnimatedPr
operty)(SVGElement*); |
63 | 64 |
(...skipping 13 matching lines...) Expand all Loading... |
77 AnimatedPropertyState animatedPropertyState; | 78 AnimatedPropertyState animatedPropertyState; |
78 const QualifiedName& attributeName; | 79 const QualifiedName& attributeName; |
79 const AtomicString& propertyIdentifier; | 80 const AtomicString& propertyIdentifier; |
80 SynchronizeProperty synchronizeProperty; | 81 SynchronizeProperty synchronizeProperty; |
81 LookupOrCreateWrapperForAnimatedProperty lookupOrCreateWrapperForAnimatedPro
perty; | 82 LookupOrCreateWrapperForAnimatedProperty lookupOrCreateWrapperForAnimatedPro
perty; |
82 }; | 83 }; |
83 | 84 |
84 } | 85 } |
85 | 86 |
86 #endif // SVGPropertyInfo_h | 87 #endif // SVGPropertyInfo_h |
OLD | NEW |