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; |