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

Unified Diff: Source/core/svg/SVGDiscardElement.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/SVGDiscardElement.h
diff --git a/Source/core/svg/SVGDiscardElement.h b/Source/core/svg/SVGDiscardElement.h
index 6c1821243b9c48280181ff06395be3afa04b06ff..76b61d8cc55381b4fcaddc4303bdc5e3aee7c0be 100644
--- a/Source/core/svg/SVGDiscardElement.h
+++ b/Source/core/svg/SVGDiscardElement.h
@@ -40,19 +40,19 @@ class SVGDiscardElement final : public SVGSMILElement {
public:
DECLARE_NODE_FACTORY(SVGDiscardElement);
- virtual bool isSVGDiscardElement() const override { return true; }
+ bool isSVGDiscardElement() const override { return true; }
private:
explicit SVGDiscardElement(Document&);
- virtual void resetAnimatedType() override { }
- virtual void clearAnimatedType() override { }
- virtual void applyResultsToTarget() override { }
- virtual bool hasValidAttributeType() override;
- virtual bool hasValidAttributeName() override;
- virtual void animationAttributeChanged() override { }
+ void resetAnimatedType() override { }
+ void clearAnimatedType() override { }
+ void applyResultsToTarget() override { }
+ bool hasValidAttributeType() override;
+ bool hasValidAttributeName() override;
+ void animationAttributeChanged() override { }
- virtual void startedActiveInterval() override { }
- virtual void updateAnimation(float percent, unsigned repeat, SVGSMILElement* resultElement) override { }
+ void startedActiveInterval() override { }
+ void updateAnimation(float percent, unsigned repeat, SVGSMILElement* resultElement) override { }
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698