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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 AnimatedStringList, |
| 55 AnimatedTransform, |
55 AnimatedTransformList, | 56 AnimatedTransformList, |
56 AnimatedUnknown | 57 AnimatedUnknown |
57 }; | 58 }; |
58 | 59 |
59 struct SVGPropertyInfo { | 60 struct SVGPropertyInfo { |
60 WTF_MAKE_FAST_ALLOCATED; | 61 WTF_MAKE_FAST_ALLOCATED; |
61 public: | 62 public: |
62 typedef void (*SynchronizeProperty)(SVGElement*); | 63 typedef void (*SynchronizeProperty)(SVGElement*); |
63 typedef PassRefPtr<SVGAnimatedProperty> (*LookupOrCreateWrapperForAnimatedPr
operty)(SVGElement*); | 64 typedef PassRefPtr<SVGAnimatedProperty> (*LookupOrCreateWrapperForAnimatedPr
operty)(SVGElement*); |
64 | 65 |
(...skipping 13 matching lines...) Expand all Loading... |
78 AnimatedPropertyState animatedPropertyState; | 79 AnimatedPropertyState animatedPropertyState; |
79 const QualifiedName& attributeName; | 80 const QualifiedName& attributeName; |
80 const AtomicString& propertyIdentifier; | 81 const AtomicString& propertyIdentifier; |
81 SynchronizeProperty synchronizeProperty; | 82 SynchronizeProperty synchronizeProperty; |
82 LookupOrCreateWrapperForAnimatedProperty lookupOrCreateWrapperForAnimatedPro
perty; | 83 LookupOrCreateWrapperForAnimatedProperty lookupOrCreateWrapperForAnimatedPro
perty; |
83 }; | 84 }; |
84 | 85 |
85 } | 86 } |
86 | 87 |
87 #endif // SVGPropertyInfo_h | 88 #endif // SVGPropertyInfo_h |
OLD | NEW |