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

Unified Diff: Source/core/html/HTMLFrameOwnerElement.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/HTMLFrameElementBase.h ('k') | Source/core/html/HTMLFrameSetElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLFrameOwnerElement.h
diff --git a/Source/core/html/HTMLFrameOwnerElement.h b/Source/core/html/HTMLFrameOwnerElement.h
index 94ed55576faa3e7f6ed3b260782a8ee81f73bc15..b357720863943b9515d90e68ce5832fe0789d5cb 100644
--- a/Source/core/html/HTMLFrameOwnerElement.h
+++ b/Source/core/html/HTMLFrameOwnerElement.h
@@ -77,7 +77,7 @@ public:
void performDeferredWidgetTreeOperations();
};
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
protected:
HTMLFrameOwnerElement(const QualifiedName& tagName, Document&);
@@ -86,13 +86,13 @@ protected:
bool loadOrRedirectSubframe(const KURL&, const AtomicString& frameName, bool lockBackForwardList);
private:
- virtual bool isKeyboardFocusable() const OVERRIDE;
- virtual bool isFrameOwnerElement() const OVERRIDE FINAL { return true; }
+ virtual bool isKeyboardFocusable() const override;
+ virtual bool isFrameOwnerElement() const override final { return true; }
// FrameOwner overrides:
virtual bool isLocal() const { return true; }
- virtual SandboxFlags sandboxFlags() const OVERRIDE { return m_sandboxFlags; }
- virtual void dispatchLoad() OVERRIDE;
+ virtual SandboxFlags sandboxFlags() const override { return m_sandboxFlags; }
+ virtual void dispatchLoad() override;
RawPtrWillBeMember<Frame> m_contentFrame;
RefPtr<Widget> m_widget;
« no previous file with comments | « Source/core/html/HTMLFrameElementBase.h ('k') | Source/core/html/HTMLFrameSetElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698