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

Unified Diff: Source/web/RemoteFrameClientImpl.h

Issue 634893002: Replace OVERRIDE and FINAL with override and final in WebKit/public (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/web/PrerendererClientImpl.h ('k') | Source/web/ScrollbarGroup.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/RemoteFrameClientImpl.h
diff --git a/Source/web/RemoteFrameClientImpl.h b/Source/web/RemoteFrameClientImpl.h
index 09ae820f5b2eaa040fc04190a3cc32583d418f4d..a85b26dd991c2966e77493a53fd9dbdebc74f1d6 100644
--- a/Source/web/RemoteFrameClientImpl.h
+++ b/Source/web/RemoteFrameClientImpl.h
@@ -15,20 +15,20 @@ public:
explicit RemoteFrameClientImpl(WebRemoteFrameImpl*);
// FrameClient overrides:
- virtual Frame* opener() const OVERRIDE;
- virtual void setOpener(Frame*) OVERRIDE;
+ virtual Frame* opener() const override;
+ virtual void setOpener(Frame*) override;
- virtual Frame* parent() const OVERRIDE;
- virtual Frame* top() const OVERRIDE;
- virtual Frame* previousSibling() const OVERRIDE;
- virtual Frame* nextSibling() const OVERRIDE;
- virtual Frame* firstChild() const OVERRIDE;
- virtual Frame* lastChild() const OVERRIDE;
+ virtual Frame* parent() const override;
+ virtual Frame* top() const override;
+ virtual Frame* previousSibling() const override;
+ virtual Frame* nextSibling() const override;
+ virtual Frame* firstChild() const override;
+ virtual Frame* lastChild() const override;
- virtual bool willCheckAndDispatchMessageEvent(SecurityOrigin*, MessageEvent*, LocalFrame*) const OVERRIDE;
+ virtual bool willCheckAndDispatchMessageEvent(SecurityOrigin*, MessageEvent*, LocalFrame*) const override;
// RemoteFrameClient overrides:
- virtual void navigate(const ResourceRequest&, bool shouldReplaceCurrentEntry) OVERRIDE;
+ virtual void navigate(const ResourceRequest&, bool shouldReplaceCurrentEntry) override;
WebRemoteFrameImpl* webFrame() const { return m_webFrame; }
« no previous file with comments | « Source/web/PrerendererClientImpl.h ('k') | Source/web/ScrollbarGroup.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698