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

Unified Diff: Source/core/animation/AnimationPlayer.h

Issue 630993005: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/animation (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added cpp to list Created 6 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
« no previous file with comments | « Source/core/animation/AnimationNodeTest.cpp ('k') | Source/core/animation/AnimationTimeline.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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*);
« no previous file with comments | « Source/core/animation/AnimationNodeTest.cpp ('k') | Source/core/animation/AnimationTimeline.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698