OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 15 matching lines...) Expand all Loading... |
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #ifndef AnimatableUnknown_h | 31 #ifndef AnimatableUnknown_h |
32 #define AnimatableUnknown_h | 32 #define AnimatableUnknown_h |
33 | 33 |
34 #include "core/CSSValueKeywords.h" | 34 #include "core/CSSValueKeywords.h" |
35 #include "core/animation/animatable/AnimatableValue.h" | 35 #include "core/animation/animatable/AnimatableValue.h" |
| 36 #include "core/css/CSSValue.h" |
36 #include "core/css/CSSValuePool.h" | 37 #include "core/css/CSSValuePool.h" |
37 | 38 |
38 namespace blink { | 39 namespace blink { |
39 | 40 |
40 class AnimatableUnknown final : public AnimatableValue { | 41 class AnimatableUnknown final : public AnimatableValue { |
41 public: | 42 public: |
42 virtual ~AnimatableUnknown() { } | 43 virtual ~AnimatableUnknown() { } |
43 | 44 |
44 static PassRefPtrWillBeRawPtr<AnimatableUnknown> create(CSSValue value) | 45 static PassRefPtrWillBeRawPtr<AnimatableUnknown> create(CSSPrimitiveValue va
lue) |
45 { | 46 { |
46 return adoptRefWillBeNoop(new AnimatableUnknown(value)); | 47 return adoptRefWillBeNoop(new AnimatableUnknown(value)); |
47 } | 48 } |
48 static PassRefPtrWillBeRawPtr<AnimatableUnknown> create(CSSValueID value) | 49 static PassRefPtrWillBeRawPtr<AnimatableUnknown> create(CSSValueID value) |
49 { | 50 { |
50 return adoptRefWillBeNoop(new AnimatableUnknown(cssValuePool().createIde
ntifierValue(value))); | 51 return adoptRefWillBeNoop(new AnimatableUnknown(cssValuePool().createIde
ntifierValue(value))); |
51 } | 52 } |
52 | 53 |
53 CSSValue toCSSValue() const { return m_value; } | 54 CSSPrimitiveValue toCSSValue() const { return toCSSPrimitiveValue(m_value);
} |
54 CSSValueID toCSSValueID() const { return toCSSPrimitiveValue(m_value).getVal
ueID(); } | 55 CSSValueID toCSSValueID() const { return toCSSPrimitiveValue(m_value).getVal
ueID(); } |
55 | 56 |
56 DEFINE_INLINE_VIRTUAL_TRACE() | 57 DEFINE_INLINE_VIRTUAL_TRACE() |
57 { | 58 { |
58 visitor->trace(m_value); | 59 visitor->trace(m_value); |
59 AnimatableValue::trace(visitor); | 60 AnimatableValue::trace(visitor); |
60 } | 61 } |
61 | 62 |
62 protected: | 63 protected: |
63 virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const Animatab
leValue* value, double fraction) const override | 64 virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const Animatab
leValue* value, double fraction) const override |
64 { | 65 { |
65 return defaultInterpolateTo(this, value, fraction); | 66 return defaultInterpolateTo(this, value, fraction); |
66 } | 67 } |
67 | 68 |
68 virtual bool usesDefaultInterpolationWith(const AnimatableValue*) const over
ride { return true; } | 69 virtual bool usesDefaultInterpolationWith(const AnimatableValue*) const over
ride { return true; } |
69 | 70 |
70 private: | 71 private: |
71 explicit AnimatableUnknown(CSSValue value) | 72 explicit AnimatableUnknown(CSSPrimitiveValue value) |
72 : m_value(value) | 73 : m_value(value) |
73 { | 74 { |
74 } | 75 } |
75 virtual AnimatableType type() const override { return TypeUnknown; } | 76 virtual AnimatableType type() const override { return TypeUnknown; } |
76 virtual bool equalTo(const AnimatableValue*) const override; | 77 virtual bool equalTo(const AnimatableValue*) const override; |
77 | 78 |
78 const CSSValue m_value; | 79 const CSSValue m_value; |
79 }; | 80 }; |
80 | 81 |
81 DEFINE_ANIMATABLE_VALUE_TYPE_CASTS(AnimatableUnknown, isUnknown()); | 82 DEFINE_ANIMATABLE_VALUE_TYPE_CASTS(AnimatableUnknown, isUnknown()); |
82 | 83 |
83 inline bool AnimatableUnknown::equalTo(const AnimatableValue* value) const | 84 inline bool AnimatableUnknown::equalTo(const AnimatableValue* value) const |
84 { | 85 { |
85 const AnimatableUnknown* unknown = toAnimatableUnknown(value); | 86 const AnimatableUnknown* unknown = toAnimatableUnknown(value); |
86 return m_value.ptrEquals(unknown->m_value) || m_value.equals(unknown->m_valu
e); | 87 return m_value.ptrEquals(unknown->m_value) || m_value.equals(unknown->m_valu
e); |
87 } | 88 } |
88 | 89 |
89 } // namespace blink | 90 } // namespace blink |
90 | 91 |
91 #endif // AnimatableUnknown_h | 92 #endif // AnimatableUnknown_h |
OLD | NEW |