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

Unified Diff: Source/core/html/HTMLFrameElementBase.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/HTMLFrameElement.h ('k') | Source/core/html/HTMLFrameOwnerElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLFrameElementBase.h
diff --git a/Source/core/html/HTMLFrameElementBase.h b/Source/core/html/HTMLFrameElementBase.h
index 9352e4e70564417560adff07a325a1faaa4aaea0..300cdf4ec3ee61e759bb174c0885022da15a2ddd 100644
--- a/Source/core/html/HTMLFrameElementBase.h
+++ b/Source/core/html/HTMLFrameElementBase.h
@@ -34,7 +34,7 @@ public:
KURL location() const;
void setLocation(const String&);
- virtual ScrollbarMode scrollingMode() const { return m_scrolling; }
+ virtual ScrollbarMode scrollingMode() const OVERRIDE FINAL { return m_scrolling; }
int marginWidth() const { return m_marginWidth; }
int marginHeight() const { return m_marginHeight; }
@@ -42,7 +42,7 @@ public:
int width();
int height();
- virtual bool canContainRangeEndPoint() const { return false; }
+ virtual bool canContainRangeEndPoint() const OVERRIDE FINAL { return false; }
protected:
HTMLFrameElementBase(const QualifiedName&, Document&);
@@ -51,19 +51,19 @@ protected:
virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
- virtual void didNotifySubtreeInsertionsToDocument() OVERRIDE;
+ virtual void didNotifySubtreeInsertionsToDocument() OVERRIDE FINAL;
virtual void attach(const AttachContext& = AttachContext()) OVERRIDE;
private:
- virtual bool supportsFocus() const;
- virtual void setFocus(bool) OVERRIDE;
+ virtual bool supportsFocus() const OVERRIDE FINAL;
+ virtual void setFocus(bool) OVERRIDE FINAL;
- virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
- virtual bool isHTMLContentAttribute(const Attribute&) const OVERRIDE;
+ virtual bool isURLAttribute(const Attribute&) const OVERRIDE FINAL;
+ virtual bool isHTMLContentAttribute(const Attribute&) const OVERRIDE FINAL;
- virtual bool isFrameElementBase() const { return true; }
+ virtual bool isFrameElementBase() const OVERRIDE FINAL { return true; }
- virtual bool areAuthorShadowsAllowed() const OVERRIDE { return false; }
+ virtual bool areAuthorShadowsAllowed() const OVERRIDE FINAL { return false; }
void setNameAndOpenURL();
void openURL(bool lockBackForwardList = true);
« no previous file with comments | « Source/core/html/HTMLFrameElement.h ('k') | Source/core/html/HTMLFrameOwnerElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698