Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / animation / InertAnimation.h
index 4beed8b..b85c853 100644 (file)
@@ -37,7 +37,7 @@
 
 namespace blink {
 
-class InertAnimation FINAL : public AnimationNode {
+class InertAnimation final : public AnimationNode {
 public:
     static PassRefPtrWillBeRawPtr<InertAnimation> create(PassRefPtrWillBeRawPtr<AnimationEffect>, const Timing&, bool paused);
     PassOwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation> > > sample(double inheritedTime);
@@ -47,8 +47,8 @@ public:
     virtual void trace(Visitor*);
 
 protected:
-    virtual void updateChildrenAndEffects() const OVERRIDE { }
-    virtual double calculateTimeToEffectChange(bool forwards, double inheritedTime, double timeToNextIteration) const OVERRIDE;
+    virtual void updateChildrenAndEffects() const override { }
+    virtual double calculateTimeToEffectChange(bool forwards, double inheritedTime, double timeToNextIteration) const override;
 
 private:
     InertAnimation(PassRefPtrWillBeRawPtr<AnimationEffect>, const Timing&, bool paused);