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

Unified Diff: Source/core/rendering/svg/RenderSVGTextPath.h

Issue 135563002: Update remaining rendering 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
Index: Source/core/rendering/svg/RenderSVGTextPath.h
diff --git a/Source/core/rendering/svg/RenderSVGTextPath.h b/Source/core/rendering/svg/RenderSVGTextPath.h
index 6e14b5528f654716551e858e226c43bdb06dfae4..d1388ed16b7edd2765eaef574c1c9c02effc138f 100644
--- a/Source/core/rendering/svg/RenderSVGTextPath.h
+++ b/Source/core/rendering/svg/RenderSVGTextPath.h
@@ -32,10 +32,10 @@ public:
Path layoutPath() const;
float startOffset() const;
- virtual bool isSVGTextPath() const { return true; }
+ virtual bool isSVGTextPath() const OVERRIDE { return true; }
private:
- virtual const char* renderName() const { return "RenderSVGTextPath"; }
+ virtual const char* renderName() const OVERRIDE { return "RenderSVGTextPath"; }
Path m_layoutPath;
};
« no previous file with comments | « Source/core/rendering/svg/RenderSVGText.h ('k') | Source/core/rendering/svg/RenderSVGTransformableContainer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698