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

Unified Diff: Source/core/frame/LocalFrame.h

Issue 635853002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/frame (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/frame/LocalDOMWindow.cpp ('k') | Source/core/frame/Location.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/LocalFrame.h
diff --git a/Source/core/frame/LocalFrame.h b/Source/core/frame/LocalFrame.h
index 5036a38977f68a93c7f365d8ccabf972e4135510..b6d32481239d69912d7be6c1d0bde2df727bf81f 100644
--- a/Source/core/frame/LocalFrame.h
+++ b/Source/core/frame/LocalFrame.h
@@ -67,7 +67,7 @@ namespace blink {
public:
static PassRefPtrWillBeRawPtr<LocalFrame> create(FrameLoaderClient*, FrameHost*, FrameOwner*);
- virtual bool isLocalFrame() const OVERRIDE { return true; }
+ virtual bool isLocalFrame() const override { return true; }
void init();
void setView(PassRefPtr<FrameView>);
@@ -76,10 +76,10 @@ namespace blink {
ScrollbarMode = ScrollbarAuto, bool verticalLock = false);
virtual ~LocalFrame();
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
- virtual void navigate(Document& originDocument, const KURL&, const Referrer&, bool lockBackForwardList) OVERRIDE;
- virtual void detach() OVERRIDE;
+ virtual void navigate(Document& originDocument, const KURL&, const Referrer&, bool lockBackForwardList) override;
+ virtual void detach() override;
void addDestructionObserver(FrameDestructionObserver*);
void removeDestructionObserver(FrameDestructionObserver*);
@@ -87,9 +87,9 @@ namespace blink {
void willDetachFrameHost();
void detachFromFrameHost();
- virtual void disconnectOwnerElement() OVERRIDE;
+ virtual void disconnectOwnerElement() override;
- virtual void setDOMWindow(PassRefPtrWillBeRawPtr<LocalDOMWindow>) OVERRIDE;
+ virtual void setDOMWindow(PassRefPtrWillBeRawPtr<LocalDOMWindow>) override;
FrameView* view() const;
Document* document() const;
void setPagePopupOwner(Element&);
« no previous file with comments | « Source/core/frame/LocalDOMWindow.cpp ('k') | Source/core/frame/Location.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698