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

Unified Diff: Source/core/svg/SVGAnimatedAngle.h

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/SVGAnimatedAngle.h
diff --git a/Source/core/svg/SVGAnimatedAngle.h b/Source/core/svg/SVGAnimatedAngle.h
index cdfc9d3e7f364fe4ec42e9e728f482633b430b7e..fd6d86712ffb3556698a3a4586bee36fec5e18ab 100644
--- a/Source/core/svg/SVGAnimatedAngle.h
+++ b/Source/core/svg/SVGAnimatedAngle.h
@@ -47,16 +47,16 @@ public:
return adoptRefWillBeNoop(new SVGAnimatedAngle(contextElement));
}
- virtual ~SVGAnimatedAngle();
+ ~SVGAnimatedAngle() override;
SVGAnimatedEnumeration<SVGMarkerOrientType>* orientType() { return m_orientType.get(); }
// SVGAnimatedPropertyBase:
- virtual void synchronizeAttribute() override;
+ void synchronizeAttribute() override;
- virtual void setAnimatedValue(PassRefPtrWillBeRawPtr<SVGPropertyBase>) override;
- virtual void animationEnded() override;
+ void setAnimatedValue(PassRefPtrWillBeRawPtr<SVGPropertyBase>) override;
+ void animationEnded() override;
DECLARE_VIRTUAL_TRACE();

Powered by Google App Engine
This is Rietveld 408576698