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

Unified Diff: Source/core/svg/animation/SVGSMILElement.cpp

Issue 631153003: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/svg (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 | « Source/core/svg/animation/SVGSMILElement.h ('k') | Source/core/svg/graphics/SVGImage.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/animation/SVGSMILElement.cpp
diff --git a/Source/core/svg/animation/SVGSMILElement.cpp b/Source/core/svg/animation/SVGSMILElement.cpp
index 2599705e33697016355f2d486d00e4496cb540a1..ab3a186602ab6dda37f2ed0648565b0ef09a22de 100644
--- a/Source/core/svg/animation/SVGSMILElement.cpp
+++ b/Source/core/svg/animation/SVGSMILElement.cpp
@@ -45,7 +45,7 @@
namespace blink {
-class RepeatEvent FINAL : public Event {
+class RepeatEvent final : public Event {
public:
static PassRefPtrWillBeRawPtr<RepeatEvent> create(const AtomicString& type, int repeat)
{
@@ -56,7 +56,7 @@ public:
int repeat() const { return m_repeat; }
- virtual void trace(Visitor* visitor) OVERRIDE
+ virtual void trace(Visitor* visitor) override
{
Event::trace(visitor);
}
@@ -105,7 +105,7 @@ static SMILEventSender& smilRepeatNEventSender()
// This is used for duration type time values that can't be negative.
static const double invalidCachedTime = -1.;
-class ConditionEventListener FINAL : public EventListener {
+class ConditionEventListener final : public EventListener {
public:
static PassRefPtr<ConditionEventListener> create(SVGSMILElement* animation, SVGSMILElement::Condition* condition)
{
@@ -119,7 +119,7 @@ public:
: 0;
}
- virtual bool operator==(const EventListener& other) OVERRIDE;
+ virtual bool operator==(const EventListener& other) override;
void disconnectAnimation()
{
@@ -134,7 +134,7 @@ private:
{
}
- virtual void handleEvent(ExecutionContext*, Event*) OVERRIDE;
+ virtual void handleEvent(ExecutionContext*, Event*) override;
SVGSMILElement* m_animation;
SVGSMILElement::Condition* m_condition;
« no previous file with comments | « Source/core/svg/animation/SVGSMILElement.h ('k') | Source/core/svg/graphics/SVGImage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698