Index: third_party/WebKit/Source/core/animation/AnimationStack.h |
diff --git a/third_party/WebKit/Source/core/animation/AnimationStack.h b/third_party/WebKit/Source/core/animation/AnimationStack.h |
index 300b190956307f53d3055148db9383274f011277..1cc6216d849f95aa3c7655b31203f7dbf5e41e21 100644 |
--- a/third_party/WebKit/Source/core/animation/AnimationStack.h |
+++ b/third_party/WebKit/Source/core/animation/AnimationStack.h |
@@ -55,8 +55,8 @@ class CORE_EXPORT AnimationStack { |
public: |
AnimationStack(); |
- void add(SampledEffect* effect) { m_effects.append(effect); } |
- bool isEmpty() const { return m_effects.isEmpty(); } |
+ void add(SampledEffect* sampledEffect) { m_sampledEffects.append(sampledEffect); } |
+ bool isEmpty() const { return m_sampledEffects.isEmpty(); } |
bool hasActiveAnimationsOnCompositor(CSSPropertyID) const; |
using PropertyHandleFilter = bool (*)(const PropertyHandle&); |
@@ -66,10 +66,10 @@ public: |
DECLARE_TRACE(); |
private: |
- void removeClearedEffects(); |
+ void removeClearedSampledEffects(); |
// Effects sorted by priority. Lower priority at the start of the list. |
- HeapVector<Member<SampledEffect>> m_effects; |
+ HeapVector<Member<SampledEffect>> m_sampledEffects; |
friend class AnimationAnimationStackTest; |
}; |