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

Unified Diff: Source/web/WebRemoteFrameImpl.cpp

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/WebRemoteFrameImpl.h ('k') | Source/web/WebSettingsImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebRemoteFrameImpl.cpp
diff --git a/Source/web/WebRemoteFrameImpl.cpp b/Source/web/WebRemoteFrameImpl.cpp
index f3c7288a4e7d8fb94ea2851beff227b1c1875516..3d23b85bd385f1d22e704559378b6b9227c858a2 100644
--- a/Source/web/WebRemoteFrameImpl.cpp
+++ b/Source/web/WebRemoteFrameImpl.cpp
@@ -37,9 +37,9 @@ public:
return adoptPtrWillBeNoop(new RemoteBridgeFrameOwner(frame));
}
- virtual bool isLocal() const OVERRIDE;
- virtual SandboxFlags sandboxFlags() const OVERRIDE;
- virtual void dispatchLoad() OVERRIDE;
+ virtual bool isLocal() const override;
+ virtual SandboxFlags sandboxFlags() const override;
+ virtual void dispatchLoad() override;
virtual void trace(Visitor*);
@@ -86,9 +86,9 @@ void RemoteBridgeFrameOwner::dispatchLoad()
class PlaceholderFrameOwner : public NoBaseWillBeGarbageCollectedFinalized<PlaceholderFrameOwner>, public FrameOwner {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(PlaceholderFrameOwner);
public:
- virtual bool isLocal() const OVERRIDE;
- virtual SandboxFlags sandboxFlags() const OVERRIDE;
- virtual void dispatchLoad() OVERRIDE;
+ virtual bool isLocal() const override;
+ virtual SandboxFlags sandboxFlags() const override;
+ virtual void dispatchLoad() override;
};
bool PlaceholderFrameOwner::isLocal() const
« no previous file with comments | « Source/web/WebRemoteFrameImpl.h ('k') | Source/web/WebSettingsImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698