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

Unified Diff: Source/core/frame/RemoteFrameView.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/RemoteFrame.h ('k') | Source/core/frame/Screen.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/RemoteFrameView.h
diff --git a/Source/core/frame/RemoteFrameView.h b/Source/core/frame/RemoteFrameView.h
index ecce68ad11f96c4dce692c9b5cf37d8396051de6..804738a43b58cb1551f4b60fc9b97b90bd7a4073 100644
--- a/Source/core/frame/RemoteFrameView.h
+++ b/Source/core/frame/RemoteFrameView.h
@@ -19,7 +19,7 @@ public:
virtual ~RemoteFrameView();
- virtual bool isRemoteFrameView() const OVERRIDE { return true; }
+ virtual bool isRemoteFrameView() const override { return true; }
RemoteFrame& frame() const
{
@@ -28,11 +28,11 @@ public:
}
// Override to notify remote frame that its viewport size has changed.
- virtual void frameRectsChanged() OVERRIDE;
+ virtual void frameRectsChanged() override;
- virtual void invalidateRect(const IntRect&) OVERRIDE;
+ virtual void invalidateRect(const IntRect&) override;
- virtual void setFrameRect(const IntRect&) OVERRIDE;
+ virtual void setFrameRect(const IntRect&) override;
private:
explicit RemoteFrameView(RemoteFrame*);
« no previous file with comments | « Source/core/frame/RemoteFrame.h ('k') | Source/core/frame/Screen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698