| Index: third_party/WebKit/Source/core/animation/EffectStack.h
|
| diff --git a/third_party/WebKit/Source/core/animation/EffectStack.h b/third_party/WebKit/Source/core/animation/EffectStack.h
|
| index a122a07f6561ec31534d1a61482aeebe570870b1..0b00f671f7ff6d08b31b0ef252944531d73e2660 100644
|
| --- a/third_party/WebKit/Source/core/animation/EffectStack.h
|
| +++ b/third_party/WebKit/Source/core/animation/EffectStack.h
|
| @@ -57,7 +57,7 @@ class CORE_EXPORT EffectStack {
|
| EffectStack();
|
|
|
| void add(SampledEffect* sampledEffect) {
|
| - m_sampledEffects.append(sampledEffect);
|
| + m_sampledEffects.push_back(sampledEffect);
|
| }
|
| bool isEmpty() const { return m_sampledEffects.isEmpty(); }
|
| bool hasActiveAnimationsOnCompositor(CSSPropertyID) const;
|
|
|