| 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
|
|
|