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

Unified Diff: Source/core/svg/SVGTextElement.h

Issue 134593005: Update SVG classes to use OVERRIDE / FINAL when needed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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/SVGTextContentElement.h ('k') | Source/core/svg/SVGTextPathElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGTextElement.h
diff --git a/Source/core/svg/SVGTextElement.h b/Source/core/svg/SVGTextElement.h
index b52204c15c3e042898901c525de0eec567ac595b..eb8014406034eed1527ee80c879eddf5231bbf11 100644
--- a/Source/core/svg/SVGTextElement.h
+++ b/Source/core/svg/SVGTextElement.h
@@ -30,15 +30,15 @@ class SVGTextElement FINAL : public SVGTextPositioningElement {
public:
static PassRefPtr<SVGTextElement> create(Document&);
- virtual AffineTransform animatedLocalTransform() const;
+ virtual AffineTransform animatedLocalTransform() const OVERRIDE;
private:
explicit SVGTextElement(Document&);
virtual bool supportsFocus() const OVERRIDE { return hasFocusEventListeners(); }
- virtual RenderObject* createRenderer(RenderStyle*);
- virtual bool childShouldCreateRenderer(const Node& child) const;
+ virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE;
+ virtual bool childShouldCreateRenderer(const Node& child) const OVERRIDE;
};
DEFINE_NODE_TYPE_CASTS(SVGTextElement, hasTagName(SVGNames::textTag));
« no previous file with comments | « Source/core/svg/SVGTextContentElement.h ('k') | Source/core/svg/SVGTextPathElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698