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

Unified Diff: third_party/WebKit/Source/core/animation/SampledEffect.h

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/SampledEffect.h
diff --git a/third_party/WebKit/Source/core/animation/SampledEffect.h b/third_party/WebKit/Source/core/animation/SampledEffect.h
index 851c54bebb9c67b6ab570a59c2f429c8a5b1a99f..fd746202f37369d3cfff2fa44fb1a77bc6d407cc 100644
--- a/third_party/WebKit/Source/core/animation/SampledEffect.h
+++ b/third_party/WebKit/Source/core/animation/SampledEffect.h
@@ -36,7 +36,7 @@ class SampledEffect : public GarbageCollectedFinalized<SampledEffect> {
KeyframeEffect* effect() const { return m_effect; }
unsigned sequenceNumber() const { return m_sequenceNumber; }
- KeyframeEffect::Priority priority() const { return m_priority; }
+ KeyframeEffectReadOnly::Priority priority() const { return m_priority; }
bool willNeverChange() const;
void removeReplacedInterpolations(const HashSet<PropertyHandle>&);
void updateReplacedProperties(HashSet<PropertyHandle>&);
@@ -49,7 +49,7 @@ class SampledEffect : public GarbageCollectedFinalized<SampledEffect> {
WeakMember<KeyframeEffect> m_effect;
Vector<RefPtr<Interpolation>> m_interpolations;
const unsigned m_sequenceNumber;
- KeyframeEffect::Priority m_priority;
+ KeyframeEffectReadOnly::Priority m_priority;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698