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

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

Issue 1232333002: Fix virtual/override/final usage in the rest of Source/core/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/RemoteFrameClient.h ('k') | Source/core/frame/RootFrameViewport.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 40db184ff69caeb1716867cdee3241c28ad0ab48..045cb984a4db3452a9fb87f537563511f3c46da0 100644
--- a/Source/core/frame/RemoteFrameView.h
+++ b/Source/core/frame/RemoteFrameView.h
@@ -17,9 +17,9 @@ class RemoteFrameView final : public Widget {
public:
static PassRefPtrWillBeRawPtr<RemoteFrameView> create(RemoteFrame*);
- virtual ~RemoteFrameView();
+ ~RemoteFrameView() override;
- virtual bool isRemoteFrameView() const override { return true; }
+ 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;
+ void frameRectsChanged() override;
- virtual void invalidateRect(const IntRect&) override;
+ void invalidateRect(const IntRect&) override;
- virtual void setFrameRect(const IntRect&) override;
+ void setFrameRect(const IntRect&) override;
DECLARE_VIRTUAL_TRACE();
« no previous file with comments | « Source/core/frame/RemoteFrameClient.h ('k') | Source/core/frame/RootFrameViewport.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698