Index: third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.cpp |
diff --git a/third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.cpp b/third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.cpp |
index 1b93da3c97acb4390455cda6d76cd9db328cdd5f..721ec23998fabdf961947d9e22d362a9c58edf99 100644 |
--- a/third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.cpp |
+++ b/third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.cpp |
@@ -52,11 +52,13 @@ KeyframeEffectReadOnly* KeyframeEffectReadOnly::create( |
KeyframeEffectReadOnly::KeyframeEffectReadOnly(Element* target, |
EffectModel* model, |
const Timing& timing, |
+ Priority priority, |
EventDelegate* eventDelegate) |
: AnimationEffectReadOnly(timing, eventDelegate), |
m_target(target), |
m_model(model), |
- m_sampledEffect(nullptr) {} |
+ m_sampledEffect(nullptr), |
+ m_priority(priority) {} |
DEFINE_TRACE(KeyframeEffectReadOnly) { |
visitor->trace(m_target); |