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

Unified Diff: Source/core/svg/SVGTextContentElement.cpp

Issue 137063005: Update more svg classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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/SVGElementInstance.h ('k') | Source/core/svg/animation/SVGSMILElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGTextContentElement.cpp
diff --git a/Source/core/svg/SVGTextContentElement.cpp b/Source/core/svg/SVGTextContentElement.cpp
index 0da391b7078dd1aa7648f1e8968014aafee00983..a0ffd03c43dcfaf1a1881264cf2049c3f574ace5 100644
--- a/Source/core/svg/SVGTextContentElement.cpp
+++ b/Source/core/svg/SVGTextContentElement.cpp
@@ -40,14 +40,14 @@ namespace WebCore {
// SVGTextContentElement's 'textLength' attribute needs special handling.
// It should return getComputedTextLength() when textLength is not specified manually.
-class SVGAnimatedTextLength : public SVGAnimatedLength {
+class SVGAnimatedTextLength FINAL : public SVGAnimatedLength {
public:
static PassRefPtr<SVGAnimatedTextLength> create(SVGTextContentElement* contextElement)
{
return adoptRef(new SVGAnimatedTextLength(contextElement));
}
- virtual SVGLengthTearOff* baseVal()
+ virtual SVGLengthTearOff* baseVal() OVERRIDE
{
SVGTextContentElement* textContentElement = toSVGTextContentElement(contextElement());
if (!textContentElement->textLengthIsSpecifiedByUser())
« no previous file with comments | « Source/core/svg/SVGElementInstance.h ('k') | Source/core/svg/animation/SVGSMILElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698