| Index: third_party/WebKit/Source/core/animation/SampledEffect.h
|
| diff --git a/third_party/WebKit/Source/core/animation/SampledEffect.h b/third_party/WebKit/Source/core/animation/SampledEffect.h
|
| index 15043071e7a2257a52c915947ad21d3692ade2cf..4045ec7e5797b00722cefbfa3163ff836a681bfa 100644
|
| --- a/third_party/WebKit/Source/core/animation/SampledEffect.h
|
| +++ b/third_party/WebKit/Source/core/animation/SampledEffect.h
|
| @@ -33,6 +33,9 @@ public:
|
| KeyframeEffect* effect() const { return m_effect; }
|
| unsigned sequenceNumber() const { return m_sequenceNumber; }
|
| KeyframeEffect::Priority priority() const { return m_priority; }
|
| + bool willNeverChange() const;
|
| + void removeReplacedInterpolations(const HashSet<PropertyHandle>&);
|
| + void updateReplacedProperties(HashSet<PropertyHandle>&);
|
|
|
| DECLARE_TRACE();
|
|
|
| @@ -40,7 +43,6 @@ private:
|
| SampledEffect(KeyframeEffect*);
|
|
|
| WeakMember<KeyframeEffect> m_effect;
|
| - Member<Animation> m_animation;
|
| Vector<RefPtr<Interpolation>> m_interpolations;
|
| const unsigned m_sequenceNumber;
|
| KeyframeEffect::Priority m_priority;
|
|
|