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

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

Issue 1212253012: Fix virtual/override/final usage in Source/core/svg/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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
Index: Source/core/svg/animation/SVGSMILElement.cpp
diff --git a/Source/core/svg/animation/SVGSMILElement.cpp b/Source/core/svg/animation/SVGSMILElement.cpp
index 7d4632fb9b15313d5ea34e2f0b0c392d43fdb09a..932e42dcc180d5ae20024f1f577c5b0dd4d40f13 100644
--- a/Source/core/svg/animation/SVGSMILElement.cpp
+++ b/Source/core/svg/animation/SVGSMILElement.cpp
@@ -52,7 +52,7 @@ public:
return adoptRefWillBeNoop(new RepeatEvent(type, false, false, repeat));
}
- virtual ~RepeatEvent() { }
+ ~RepeatEvent() override {}
int repeat() const { return m_repeat; }
@@ -119,7 +119,7 @@ public:
: nullptr;
}
- virtual bool operator==(const EventListener& other) override;
+ bool operator==(const EventListener& other) override;
void disconnectAnimation()
{
@@ -134,7 +134,7 @@ private:
{
}
- virtual void handleEvent(ExecutionContext*, Event*) override;
+ void handleEvent(ExecutionContext*, Event*) override;
SVGSMILElement* m_animation;
SVGSMILElement::Condition* m_condition;

Powered by Google App Engine
This is Rietveld 408576698