OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef StringKeyframe_h | 5 #ifndef StringKeyframe_h |
6 #define StringKeyframe_h | 6 #define StringKeyframe_h |
7 | 7 |
8 #include "core/animation/Keyframe.h" | 8 #include "core/animation/Keyframe.h" |
9 #include "core/css/StylePropertySet.h" | 9 #include "core/css/StylePropertySet.h" |
10 | 10 |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 virtual PassRefPtrWillBeRawPtr<Interpolation> maybeCreateInterpolation(P
ropertyHandle, Keyframe::PropertySpecificKeyframe& end, Element*, const Computed
Style* baseStyle) const override final; | 53 virtual PassRefPtrWillBeRawPtr<Interpolation> maybeCreateInterpolation(P
ropertyHandle, Keyframe::PropertySpecificKeyframe& end, Element*, const Computed
Style* baseStyle) const override final; |
54 | 54 |
55 DECLARE_VIRTUAL_TRACE(); | 55 DECLARE_VIRTUAL_TRACE(); |
56 | 56 |
57 private: | 57 private: |
58 CSSPropertySpecificKeyframe(double offset, PassRefPtr<TimingFunction> ea
sing, NullableCSSValue); | 58 CSSPropertySpecificKeyframe(double offset, PassRefPtr<TimingFunction> ea
sing, NullableCSSValue); |
59 | 59 |
60 virtual PassOwnPtrWillBeRawPtr<Keyframe::PropertySpecificKeyframe> clone
WithOffset(double offset) const; | 60 virtual PassOwnPtrWillBeRawPtr<Keyframe::PropertySpecificKeyframe> clone
WithOffset(double offset) const; |
61 virtual bool isCSSPropertySpecificKeyframe() const override { return tru
e; } | 61 virtual bool isCSSPropertySpecificKeyframe() const override { return tru
e; } |
62 | 62 |
63 static bool createInterpolationsFromCSSValues(CSSPropertyID, CSSValue fr
omCSSValue, CSSValue toCSSValue, Element*, OwnPtrWillBeRawPtr<WillBeHeapVector<R
efPtrWillBeMember<Interpolation>>>& interpolations); | 63 static bool createInterpolationsFromCSSValues(CSSPropertyID, const CSSVa
lue& fromCSSValue, const CSSValue& toCSSValue, Element*, OwnPtrWillBeRawPtr<Will
BeHeapVector<RefPtrWillBeMember<Interpolation>>>& interpolations); |
64 | 64 |
65 void populateAnimatableValueCaches(CSSPropertyID, Keyframe::PropertySpec
ificKeyframe&, Element*, CSSValue& fromCSSValue, CSSValue& toCSSValue) const; | 65 void populateAnimatableValueCaches(CSSPropertyID, Keyframe::PropertySpec
ificKeyframe&, Element*, const CSSValue& fromCSSValue, const CSSValue& toCSSValu
e) const; |
66 | 66 |
67 NullableCSSValue m_value; | 67 NullableCSSValue m_value; |
68 mutable RefPtrWillBeMember<AnimatableValue> m_animatableValueCache; | 68 mutable RefPtrWillBeMember<AnimatableValue> m_animatableValueCache; |
69 }; | 69 }; |
70 | 70 |
71 class SVGPropertySpecificKeyframe : public Keyframe::PropertySpecificKeyfram
e { | 71 class SVGPropertySpecificKeyframe : public Keyframe::PropertySpecificKeyfram
e { |
72 public: | 72 public: |
73 SVGPropertySpecificKeyframe(double offset, PassRefPtr<TimingFunction> ea
sing, const String&, EffectModel::CompositeOperation); | 73 SVGPropertySpecificKeyframe(double offset, PassRefPtr<TimingFunction> ea
sing, const String&, EffectModel::CompositeOperation); |
74 | 74 |
75 const String& value() const { return m_value; } | 75 const String& value() const { return m_value; } |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 using CSSPropertySpecificKeyframe = StringKeyframe::CSSPropertySpecificKeyframe; | 110 using CSSPropertySpecificKeyframe = StringKeyframe::CSSPropertySpecificKeyframe; |
111 using SVGPropertySpecificKeyframe = StringKeyframe::SVGPropertySpecificKeyframe; | 111 using SVGPropertySpecificKeyframe = StringKeyframe::SVGPropertySpecificKeyframe; |
112 | 112 |
113 DEFINE_TYPE_CASTS(StringKeyframe, Keyframe, value, value->isStringKeyframe(), va
lue.isStringKeyframe()); | 113 DEFINE_TYPE_CASTS(StringKeyframe, Keyframe, value, value->isStringKeyframe(), va
lue.isStringKeyframe()); |
114 DEFINE_TYPE_CASTS(CSSPropertySpecificKeyframe, Keyframe::PropertySpecificKeyfram
e, value, value->isCSSPropertySpecificKeyframe(), value.isCSSPropertySpecificKey
frame()); | 114 DEFINE_TYPE_CASTS(CSSPropertySpecificKeyframe, Keyframe::PropertySpecificKeyfram
e, value, value->isCSSPropertySpecificKeyframe(), value.isCSSPropertySpecificKey
frame()); |
115 DEFINE_TYPE_CASTS(SVGPropertySpecificKeyframe, Keyframe::PropertySpecificKeyfram
e, value, value->isSVGPropertySpecificKeyframe(), value.isSVGPropertySpecificKey
frame()); | 115 DEFINE_TYPE_CASTS(SVGPropertySpecificKeyframe, Keyframe::PropertySpecificKeyfram
e, value, value->isSVGPropertySpecificKeyframe(), value.isSVGPropertySpecificKey
frame()); |
116 | 116 |
117 } | 117 } |
118 | 118 |
119 #endif | 119 #endif |
OLD | NEW |