Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / animation / SampledEffect.h
index 0f11b34..1eed3e0 100644 (file)
@@ -27,7 +27,7 @@ public:
     void setInterpolations(PassOwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation> > > interpolations) { m_interpolations = interpolations; }
 
     Animation* animation() const { return m_animation; }
-    const AnimationPlayer::SortInfo& sortInfo() const { return m_playerSortInfo; }
+    unsigned sequenceNumber() const { return m_sequenceNumber; }
     Animation::Priority priority() const { return m_priority; }
 
     void removeReplacedInterpolationsIfNeeded(const BitArray<numCSSProperties>&);
@@ -42,7 +42,7 @@ private:
     RefPtr<AnimationPlayer> m_player;
 #endif
     OwnPtrWillBeMember<WillBeHeapVector<RefPtrWillBeMember<Interpolation> > > m_interpolations;
-    AnimationPlayer::SortInfo m_playerSortInfo;
+    const unsigned m_sequenceNumber;
     Animation::Priority m_priority;
 };