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

Unified Diff: Source/core/frame/RemoteFrame.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/PlatformEventController.h ('k') | Source/core/frame/RemoteFrameView.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/RemoteFrame.h
diff --git a/Source/core/frame/RemoteFrame.h b/Source/core/frame/RemoteFrame.h
index c246f75371870068b229e0d9ece3f77a42f4c5f2..e74d1acf70a67287df118c716e120885f855593d 100644
--- a/Source/core/frame/RemoteFrame.h
+++ b/Source/core/frame/RemoteFrame.h
@@ -15,12 +15,12 @@ class RemoteFrameView;
class RemoteFrame: public Frame {
public:
static PassRefPtrWillBeRawPtr<RemoteFrame> create(RemoteFrameClient*, FrameHost*, FrameOwner*);
- virtual bool isRemoteFrame() const OVERRIDE { return true; }
+ virtual bool isRemoteFrame() const override { return true; }
virtual ~RemoteFrame();
- 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 setView(PassRefPtr<RemoteFrameView>);
void createView();
« no previous file with comments | « Source/core/frame/PlatformEventController.h ('k') | Source/core/frame/RemoteFrameView.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698