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

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

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 | « no previous file | Source/core/svg/SVGAltGlyphDefElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGAElement.h
diff --git a/Source/core/svg/SVGAElement.h b/Source/core/svg/SVGAElement.h
index f6c3e02277b1f7848be91e54d899b4b34b8e3393..18745cef341f64389184aadecd715b2d14d08874 100644
--- a/Source/core/svg/SVGAElement.h
+++ b/Source/core/svg/SVGAElement.h
@@ -28,7 +28,7 @@
namespace blink {
-class SVGAElement FINAL : public SVGGraphicsElement,
+class SVGAElement final : public SVGGraphicsElement,
public SVGURIReference {
DEFINE_WRAPPERTYPEINFO();
public:
@@ -38,27 +38,27 @@ public:
private:
explicit SVGAElement(Document&);
- virtual String title() const OVERRIDE;
+ virtual String title() const override;
- virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
- virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE;
+ virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
+ virtual void svgAttributeChanged(const QualifiedName&) override;
- virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE;
+ virtual RenderObject* createRenderer(RenderStyle*) override;
- virtual void defaultEventHandler(Event*) OVERRIDE;
+ virtual void defaultEventHandler(Event*) override;
- virtual bool isLiveLink() const OVERRIDE { return isLink(); }
+ virtual bool isLiveLink() const override { return isLink(); }
- virtual bool supportsFocus() const OVERRIDE;
- virtual bool shouldHaveFocusAppearance() const OVERRIDE FINAL;
- virtual void dispatchFocusEvent(Element* oldFocusedElement, FocusType) OVERRIDE;
- virtual bool isMouseFocusable() const OVERRIDE;
- virtual bool isKeyboardFocusable() const OVERRIDE;
- virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
- virtual bool canStartSelection() const OVERRIDE;
- virtual short tabIndex() const OVERRIDE;
+ virtual bool supportsFocus() const override;
+ virtual bool shouldHaveFocusAppearance() const override final;
+ virtual void dispatchFocusEvent(Element* oldFocusedElement, FocusType) override;
+ virtual bool isMouseFocusable() const override;
+ virtual bool isKeyboardFocusable() const override;
+ virtual bool isURLAttribute(const Attribute&) const override;
+ virtual bool canStartSelection() const override;
+ virtual short tabIndex() const override;
- virtual bool willRespondToMouseClickEvents() OVERRIDE;
+ virtual bool willRespondToMouseClickEvents() override;
RefPtr<SVGAnimatedString> m_svgTarget;
bool m_wasFocusedByMouse;
« no previous file with comments | « no previous file | Source/core/svg/SVGAltGlyphDefElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698