Index: Source/core/animation/AnimationPlayer.h |
diff --git a/Source/core/animation/AnimationPlayer.h b/Source/core/animation/AnimationPlayer.h |
index 3157b712ce9ca49f9bfde13cc00a0c67f88d361f..c1ab1d8b2e0ba92ce92df6def6368f583ec47f92 100644 |
--- a/Source/core/animation/AnimationPlayer.h |
+++ b/Source/core/animation/AnimationPlayer.h |
@@ -41,7 +41,7 @@ namespace blink { |
class AnimationTimeline; |
class ExceptionState; |
-class AnimationPlayer FINAL : public RefCountedWillBeGarbageCollectedFinalized<AnimationPlayer> |
+class AnimationPlayer final : public RefCountedWillBeGarbageCollectedFinalized<AnimationPlayer> |
, public ActiveDOMObject |
, public EventTargetWithInlineData { |
DEFINE_WRAPPERTYPEINFO(); |
@@ -94,11 +94,11 @@ public: |
DEFINE_ATTRIBUTE_EVENT_LISTENER(finish); |
- virtual const AtomicString& interfaceName() const OVERRIDE; |
- virtual ExecutionContext* executionContext() const OVERRIDE; |
- virtual bool hasPendingActivity() const OVERRIDE; |
- virtual void stop() OVERRIDE; |
- virtual bool dispatchEvent(PassRefPtrWillBeRawPtr<Event>) OVERRIDE; |
+ virtual const AtomicString& interfaceName() const override; |
+ virtual ExecutionContext* executionContext() const override; |
+ virtual bool hasPendingActivity() const override; |
+ virtual void stop() override; |
+ virtual bool dispatchEvent(PassRefPtrWillBeRawPtr<Event>) override; |
double playbackRate() const; |
void setPlaybackRate(double); |
@@ -154,9 +154,9 @@ public: |
bool canFree() const; |
#endif |
- virtual bool addEventListener(const AtomicString& eventType, PassRefPtr<EventListener>, bool useCapture = false) OVERRIDE; |
+ virtual bool addEventListener(const AtomicString& eventType, PassRefPtr<EventListener>, bool useCapture = false) override; |
- virtual void trace(Visitor*) OVERRIDE; |
+ virtual void trace(Visitor*) override; |
private: |
AnimationPlayer(ExecutionContext*, AnimationTimeline&, AnimationNode*); |