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

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

Issue 635793002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/html (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 | « 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 6be9a0f0c26db54426d2c9c65b4dd657b1493e13..dbf40abd1c1d6ec729981f31c2caedb0f2aeb2ac 100644
--- a/Source/core/html/HTMLFrameElementBase.h
+++ b/Source/core/html/HTMLFrameElementBase.h
@@ -31,36 +31,36 @@ namespace blink {
class HTMLFrameElementBase : public HTMLFrameOwnerElement {
public:
- virtual ScrollbarMode scrollingMode() const OVERRIDE FINAL { return m_scrolling; }
+ virtual ScrollbarMode scrollingMode() const override final { return m_scrolling; }
int marginWidth() const { return m_marginWidth; }
int marginHeight() const { return m_marginHeight; }
- virtual bool canContainRangeEndPoint() const OVERRIDE FINAL { return false; }
+ virtual bool canContainRangeEndPoint() const override final { return false; }
protected:
HTMLFrameElementBase(const QualifiedName&, Document&);
bool isURLAllowed() const;
- virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
- virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
- virtual void didNotifySubtreeInsertionsToDocument() OVERRIDE FINAL;
- virtual void attach(const AttachContext& = AttachContext()) OVERRIDE;
+ virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
+ virtual InsertionNotificationRequest insertedInto(ContainerNode*) override;
+ virtual void didNotifySubtreeInsertionsToDocument() override final;
+ virtual void attach(const AttachContext& = AttachContext()) override;
// FIXME: Remove this method once we have input routing in the browser
// process. See http://crbug.com/339659.
- virtual void defaultEventHandler(Event*) OVERRIDE;
+ virtual void defaultEventHandler(Event*) override;
private:
- virtual bool supportsFocus() const OVERRIDE FINAL;
- virtual void setFocus(bool) OVERRIDE FINAL;
+ virtual bool supportsFocus() const override final;
+ virtual void setFocus(bool) override final;
- virtual bool isURLAttribute(const Attribute&) const OVERRIDE FINAL;
- virtual bool hasLegalLinkAttribute(const QualifiedName&) const OVERRIDE FINAL;
- virtual bool isHTMLContentAttribute(const Attribute&) const OVERRIDE FINAL;
+ virtual bool isURLAttribute(const Attribute&) const override final;
+ virtual bool hasLegalLinkAttribute(const QualifiedName&) const override final;
+ virtual bool isHTMLContentAttribute(const Attribute&) const override final;
- virtual bool areAuthorShadowsAllowed() const OVERRIDE FINAL { return false; }
+ virtual bool areAuthorShadowsAllowed() const override final { return false; }
void setLocation(const String&);
void setNameAndOpenURL();
« 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