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

Unified Diff: Source/core/svg/SVGStaticStringList.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/SVGStaticStringList.h
diff --git a/Source/core/svg/SVGStaticStringList.h b/Source/core/svg/SVGStaticStringList.h
index 3eea5d14c15c50e4e9096e97c30ce9af091284b0..54fdd23195ceb20310ca465f95d168f66e4d3f69 100644
--- a/Source/core/svg/SVGStaticStringList.h
+++ b/Source/core/svg/SVGStaticStringList.h
@@ -48,15 +48,15 @@ public:
return adoptRefWillBeNoop(new SVGStaticStringList(contextElement, attributeName));
}
- virtual ~SVGStaticStringList();
+ ~SVGStaticStringList() override;
// SVGAnimatedPropertyBase:
- virtual SVGPropertyBase* currentValueBase() override;
- virtual bool isAnimating() const override;
- virtual PassRefPtrWillBeRawPtr<SVGPropertyBase> createAnimatedValue() override;
- virtual void setAnimatedValue(PassRefPtrWillBeRawPtr<SVGPropertyBase>) override;
- virtual void animationEnded() override;
- virtual bool needsSynchronizeAttribute() override;
+ SVGPropertyBase* currentValueBase() override;
+ bool isAnimating() const override;
+ PassRefPtrWillBeRawPtr<SVGPropertyBase> createAnimatedValue() override;
+ void setAnimatedValue(PassRefPtrWillBeRawPtr<SVGPropertyBase>) override;
+ void animationEnded() override;
+ bool needsSynchronizeAttribute() override;
void setBaseValueAsString(const String& value, SVGParsingError& parseError);

Powered by Google App Engine
This is Rietveld 408576698