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

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

Issue 1212253012: Fix virtual/override/final usage in Source/core/svg/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/SVGAngle.h » ('j') | Source/core/svg/SVGPathSegLinetoHorizontalAbs.h » ('J')
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 f39db89e701dc2935c2c95bc60a0851b526943a1..793a163e4a0aa0d3d3b03a82753d89180f3d2bb9 100644
--- a/Source/core/svg/SVGAElement.h
+++ b/Source/core/svg/SVGAElement.h
@@ -42,27 +42,27 @@ public:
private:
explicit SVGAElement(Document&);
- virtual String title() const override;
+ String title() const override;
- virtual void svgAttributeChanged(const QualifiedName&) override;
+ void svgAttributeChanged(const QualifiedName&) override;
- virtual LayoutObject* createLayoutObject(const ComputedStyle&) override;
+ LayoutObject* createLayoutObject(const ComputedStyle&) override;
- virtual void defaultEventHandler(Event*) override;
+ void defaultEventHandler(Event*) override;
- virtual bool isLiveLink() const override { return isLink(); }
+ bool isLiveLink() const override { return isLink(); }
- virtual bool supportsFocus() const override;
- virtual bool shouldHaveFocusAppearance() const override final;
- virtual void dispatchFocusEvent(Element* oldFocusedElement, WebFocusType) override;
- virtual void dispatchBlurEvent(Element* newFocusedElement, WebFocusType) 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;
+ bool supportsFocus() const override;
+ bool shouldHaveFocusAppearance() const final;
+ void dispatchFocusEvent(Element* oldFocusedElement, WebFocusType) override;
+ void dispatchBlurEvent(Element* newFocusedElement, WebFocusType) override;
+ bool isMouseFocusable() const override;
+ bool isKeyboardFocusable() const override;
+ bool isURLAttribute(const Attribute&) const override;
+ bool canStartSelection() const override;
+ short tabIndex() const override;
- virtual bool willRespondToMouseClickEvents() override;
+ bool willRespondToMouseClickEvents() override;
RefPtrWillBeMember<SVGAnimatedString> m_svgTarget;
bool m_wasFocusedByMouse;
« no previous file with comments | « no previous file | Source/core/svg/SVGAngle.h » ('j') | Source/core/svg/SVGPathSegLinetoHorizontalAbs.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698