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

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

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/SVGDescElement.h ('k') | Source/core/svg/SVGElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGDiscardElement.h
diff --git a/Source/core/svg/SVGDiscardElement.h b/Source/core/svg/SVGDiscardElement.h
index c20aad6bf18ed5e5bdfcb43d8800627ee89b11ec..c55f7dbfff4071964e3f27085bdf46e97b00af47 100644
--- a/Source/core/svg/SVGDiscardElement.h
+++ b/Source/core/svg/SVGDiscardElement.h
@@ -35,24 +35,24 @@
namespace blink {
-class SVGDiscardElement FINAL : public SVGSMILElement {
+class SVGDiscardElement final : public SVGSMILElement {
DEFINE_WRAPPERTYPEINFO();
public:
DECLARE_NODE_FACTORY(SVGDiscardElement);
- virtual bool isSVGDiscardElement() const OVERRIDE { return true; }
+ virtual bool isSVGDiscardElement() const override { return true; }
private:
explicit SVGDiscardElement(Document&);
- virtual void resetAnimatedType() OVERRIDE { }
- virtual void clearAnimatedType(SVGElement* targetElement) OVERRIDE { }
- virtual void applyResultsToTarget() OVERRIDE { }
- virtual bool hasValidAttributeType() OVERRIDE;
- virtual bool hasValidAttributeName() OVERRIDE;
- virtual void animationAttributeChanged() OVERRIDE { }
+ virtual void resetAnimatedType() override { }
+ virtual void clearAnimatedType(SVGElement* targetElement) override { }
+ virtual void applyResultsToTarget() override { }
+ virtual bool hasValidAttributeType() override;
+ virtual bool hasValidAttributeName() override;
+ virtual void animationAttributeChanged() override { }
- virtual void startedActiveInterval() OVERRIDE { }
- virtual void updateAnimation(float percent, unsigned repeat, SVGSMILElement* resultElement) OVERRIDE { }
+ virtual void startedActiveInterval() override { }
+ virtual void updateAnimation(float percent, unsigned repeat, SVGSMILElement* resultElement) override { }
};
} // namespace blink
« no previous file with comments | « Source/core/svg/SVGDescElement.h ('k') | Source/core/svg/SVGElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698