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

Unified Diff: Source/web/RemoteFrameClient.h

Issue 573353002: Plumbing toward transitioning remote frame back to a local frame. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: forward declarations, drop a spurious parameter Created 6 years, 3 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/html/HTMLFrameOwnerElement.cpp ('k') | Source/web/RemoteFrameClient.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/RemoteFrameClient.h
diff --git a/Source/web/RemoteFrameClient.h b/Source/web/RemoteFrameClient.h
deleted file mode 100644
index 70c3653f78ecec5f2fe15a1cc00e6ad068bb7f90..0000000000000000000000000000000000000000
--- a/Source/web/RemoteFrameClient.h
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef RemoteFrameClient_h
-#define RemoteFrameClient_h
-
-#include "core/frame/FrameClient.h"
-
-namespace blink {
-
-class WebRemoteFrameImpl;
-
-class RemoteFrameClient : public FrameClient {
-public:
- explicit RemoteFrameClient(WebRemoteFrameImpl*);
-
- // FrameClient overrides:
- virtual Frame* opener() const OVERRIDE;
- virtual void setOpener(Frame*) OVERRIDE;
-
- virtual Frame* parent() const OVERRIDE;
- virtual Frame* top() const OVERRIDE;
- virtual Frame* previousSibling() const OVERRIDE;
- virtual Frame* nextSibling() const OVERRIDE;
- virtual Frame* firstChild() const OVERRIDE;
- virtual Frame* lastChild() const OVERRIDE;
-
- virtual bool willCheckAndDispatchMessageEvent(SecurityOrigin*, MessageEvent*, LocalFrame*) const OVERRIDE;
-
- WebRemoteFrameImpl* webFrame() const { return m_webFrame; }
-
-private:
- WebRemoteFrameImpl* m_webFrame;
-};
-
-} // namespace blink
-
-#endif // RemoteFrameClient_h
« no previous file with comments | « Source/core/html/HTMLFrameOwnerElement.cpp ('k') | Source/web/RemoteFrameClient.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698