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

Unified Diff: Source/core/animation/AnimationNodeTest.cpp

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/Animation.h ('k') | Source/core/animation/AnimationPlayer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/AnimationNodeTest.cpp
diff --git a/Source/core/animation/AnimationNodeTest.cpp b/Source/core/animation/AnimationNodeTest.cpp
index 527fce4454e34051810432c2bc0d62ed74b92de5..9b32db135d0f903a4d7e1b19ee617135456709a9 100644
--- a/Source/core/animation/AnimationNodeTest.cpp
+++ b/Source/core/animation/AnimationNodeTest.cpp
@@ -39,7 +39,7 @@ namespace {
class TestAnimationNodeEventDelegate : public AnimationNode::EventDelegate {
public:
- virtual void onEventCondition(const AnimationNode* animationNode) OVERRIDE
+ virtual void onEventCondition(const AnimationNode* animationNode) override
{
m_eventTriggered = true;
@@ -72,10 +72,10 @@ public:
AnimationNode::updateInheritedTime(time, reason);
}
- virtual void updateChildrenAndEffects() const OVERRIDE { }
+ virtual void updateChildrenAndEffects() const override { }
void willDetach() { }
TestAnimationNodeEventDelegate* eventDelegate() { return m_eventDelegate.get(); }
- virtual double calculateTimeToEffectChange(bool forwards, double localTime, double timeToNextIteration) const OVERRIDE
+ virtual double calculateTimeToEffectChange(bool forwards, double localTime, double timeToNextIteration) const override
{
m_localTime = localTime;
m_timeToNextIteration = timeToNextIteration;
@@ -95,7 +95,7 @@ public:
return result;
}
- virtual void trace(Visitor* visitor) OVERRIDE
+ virtual void trace(Visitor* visitor) override
{
visitor->trace(m_eventDelegate);
AnimationNode::trace(visitor);
« no previous file with comments | « Source/core/animation/Animation.h ('k') | Source/core/animation/AnimationPlayer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698