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

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

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/SVGTextContentElement.h ('k') | Source/core/svg/SVGTextElement.h » ('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 fcc07630c42ead2819ca15421e6e806eb6ef6371..51f8af6bb07e8adf8bdea663146e53bf45a9af7d 100644
--- a/Source/core/svg/SVGTextContentElement.cpp
+++ b/Source/core/svg/SVGTextContentElement.cpp
@@ -48,14 +48,14 @@ template<> const SVGEnumerationStringEntries& getStaticStringEntries<SVGLengthAd
// SVGTextContentElement's 'textLength' attribute needs special handling.
// It should return getComputedTextLength() when textLength is not specified manually.
-class SVGAnimatedTextLength FINAL : public SVGAnimatedLength {
+class SVGAnimatedTextLength final : public SVGAnimatedLength {
public:
static PassRefPtr<SVGAnimatedTextLength> create(SVGTextContentElement* contextElement)
{
return adoptRef(new SVGAnimatedTextLength(contextElement));
}
- virtual SVGLengthTearOff* baseVal() OVERRIDE
+ virtual SVGLengthTearOff* baseVal() override
{
SVGTextContentElement* textContentElement = toSVGTextContentElement(contextElement());
if (!textContentElement->textLengthIsSpecifiedByUser())
« no previous file with comments | « Source/core/svg/SVGTextContentElement.h ('k') | Source/core/svg/SVGTextElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698