Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(241)

Unified Diff: third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.cpp

Issue 2394993002: Move Priority enum/field to KeyframeEffectReadOnly (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698