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

Unified Diff: Source/core/html/HTMLAnchorElement.h

Issue 126793004: Update HTML 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/html/ClassList.h ('k') | Source/core/html/HTMLAreaElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLAnchorElement.h
diff --git a/Source/core/html/HTMLAnchorElement.h b/Source/core/html/HTMLAnchorElement.h
index b30cb65f4c8b1c3b584ccbe681e456dc3fd81067..7bd7bd999dd351ab6fd9ba56aad881a9ab48a411 100644
--- a/Source/core/html/HTMLAnchorElement.h
+++ b/Source/core/html/HTMLAnchorElement.h
@@ -66,17 +66,17 @@ public:
const AtomicString& name() const;
- virtual KURL url() const OVERRIDE;
- virtual void setURL(const KURL&) OVERRIDE;
+ virtual KURL url() const OVERRIDE FINAL;
+ virtual void setURL(const KURL&) OVERRIDE FINAL;
- virtual String input() const OVERRIDE;
- virtual void setInput(const String&) OVERRIDE;
+ virtual String input() const OVERRIDE FINAL;
+ virtual void setInput(const String&) OVERRIDE FINAL;
String text();
bool isLiveLink() const;
- virtual bool willRespondToMouseClickEvents() OVERRIDE;
+ virtual bool willRespondToMouseClickEvents() OVERRIDE FINAL;
bool hasRel(uint32_t relation) const;
void setRel(const AtomicString&);
@@ -90,18 +90,18 @@ protected:
virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
private:
- virtual bool supportsFocus() const;
- virtual bool isMouseFocusable() const;
+ virtual bool supportsFocus() const OVERRIDE;
+ virtual bool isMouseFocusable() const OVERRIDE;
virtual bool isKeyboardFocusable() const OVERRIDE;
- virtual void defaultEventHandler(Event*);
+ virtual void defaultEventHandler(Event*) OVERRIDE FINAL;
virtual void setActive(bool = true) OVERRIDE FINAL;
- virtual void accessKeyAction(bool sendMouseEvents);
- virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
- virtual bool canStartSelection() const;
+ virtual void accessKeyAction(bool sendMouseEvents) OVERRIDE FINAL;
+ virtual bool isURLAttribute(const Attribute&) const OVERRIDE FINAL;
+ virtual bool canStartSelection() const OVERRIDE FINAL;
virtual AtomicString target() const OVERRIDE;
- virtual short tabIndex() const;
- virtual bool draggable() const;
- virtual bool isInteractiveContent() const OVERRIDE;
+ virtual short tabIndex() const OVERRIDE FINAL;
+ virtual bool draggable() const OVERRIDE FINAL;
+ virtual bool isInteractiveContent() const OVERRIDE FINAL;
void sendPings(const KURL& destinationURL);
« no previous file with comments | « Source/core/html/ClassList.h ('k') | Source/core/html/HTMLAreaElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698