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

Unified Diff: Source/core/events/AnimationPlayerEvent.h

Issue 636833002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/events (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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 | « no previous file | Source/core/events/ApplicationCacheErrorEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/AnimationPlayerEvent.h
diff --git a/Source/core/events/AnimationPlayerEvent.h b/Source/core/events/AnimationPlayerEvent.h
index e1f7bca1110297758218c2635720e8e4d5da08d8..95995d4146e30454abfe73e610688e97a1186656 100644
--- a/Source/core/events/AnimationPlayerEvent.h
+++ b/Source/core/events/AnimationPlayerEvent.h
@@ -16,7 +16,7 @@ struct AnimationPlayerEventInit : public EventInit {
double timelineTime;
};
-class AnimationPlayerEvent FINAL : public Event {
+class AnimationPlayerEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
static PassRefPtrWillBeRawPtr<AnimationPlayerEvent> create()
@@ -37,9 +37,9 @@ public:
double currentTime() const;
double timelineTime() const;
- virtual const AtomicString& interfaceName() const OVERRIDE;
+ virtual const AtomicString& interfaceName() const override;
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
AnimationPlayerEvent();
« no previous file with comments | « no previous file | Source/core/events/ApplicationCacheErrorEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698