| Index: Source/core/frame/RemoteFrame.h
|
| diff --git a/Source/core/frame/RemoteFrame.h b/Source/core/frame/RemoteFrame.h
|
| index c7ff20f2541fd55426978e17f6f809818aad2b3d..3818f6365f646c94543612395d84bfc2fd328312 100644
|
| --- a/Source/core/frame/RemoteFrame.h
|
| +++ b/Source/core/frame/RemoteFrame.h
|
| @@ -16,10 +16,13 @@ class RemoteFrameView;
|
| class RemoteFrame: public Frame {
|
| public:
|
| static PassRefPtrWillBeRawPtr<RemoteFrame> create(RemoteFrameClient*, FrameHost*, FrameOwner*);
|
| - virtual bool isRemoteFrame() const override { return true; }
|
|
|
| virtual ~RemoteFrame();
|
|
|
| + // Frame overrides:
|
| + void trace(Visitor*) override;
|
| + virtual bool isRemoteFrame() const override { return true; }
|
| + virtual LocalDOMWindow* domWindow() const override { return 0; }
|
| virtual void navigate(Document& originDocument, const KURL&, bool lockBackForwardList) override;
|
| virtual void detach() override;
|
|
|
| @@ -32,7 +35,6 @@ public:
|
|
|
| RemoteFrameView* view() const;
|
|
|
| - void trace(Visitor*) override;
|
|
|
| private:
|
| RemoteFrame(RemoteFrameClient*, FrameHost*, FrameOwner*);
|
|
|