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

Unified Diff: Source/core/animation/AnimationTimeline.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/AnimationPlayer.h ('k') | Source/core/animation/CompositorAnimationsTestHelper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/AnimationTimeline.h
diff --git a/Source/core/animation/AnimationTimeline.h b/Source/core/animation/AnimationTimeline.h
index 1d4fde3d2a3c1bc47fe5045ea8d382480f691214..6b036de2b8d6b01b089d8a9ce94a9e9f69b60869 100644
--- a/Source/core/animation/AnimationTimeline.h
+++ b/Source/core/animation/AnimationTimeline.h
@@ -115,7 +115,7 @@ private:
OwnPtrWillBeMember<PlatformTiming> m_timing;
- class AnimationTimelineTiming FINAL : public PlatformTiming {
+ class AnimationTimelineTiming final : public PlatformTiming {
public:
AnimationTimelineTiming(AnimationTimeline* timeline)
: m_timeline(timeline)
@@ -124,13 +124,13 @@ private:
ASSERT(m_timeline);
}
- virtual void wakeAfter(double duration) OVERRIDE;
- virtual void cancelWake() OVERRIDE;
- virtual void serviceOnNextFrame() OVERRIDE;
+ virtual void wakeAfter(double duration) override;
+ virtual void cancelWake() override;
+ virtual void serviceOnNextFrame() override;
void timerFired(Timer<AnimationTimelineTiming>*) { m_timeline->wake(); }
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
RawPtrWillBeMember<AnimationTimeline> m_timeline;
« no previous file with comments | « Source/core/animation/AnimationPlayer.h ('k') | Source/core/animation/CompositorAnimationsTestHelper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698