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

Unified Diff: Source/web/RemoteFrameClientImpl.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/web/RemoteFrameClient.cpp ('k') | Source/web/RemoteFrameClientImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/RemoteFrameClientImpl.h
diff --git a/Source/web/RemoteFrameClient.h b/Source/web/RemoteFrameClientImpl.h
similarity index 69%
rename from Source/web/RemoteFrameClient.h
rename to Source/web/RemoteFrameClientImpl.h
index 70c3653f78ecec5f2fe15a1cc00e6ad068bb7f90..09ae820f5b2eaa040fc04190a3cc32583d418f4d 100644
--- a/Source/web/RemoteFrameClient.h
+++ b/Source/web/RemoteFrameClientImpl.h
@@ -2,18 +2,17 @@
// 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
+#ifndef RemoteFrameClientImpl_h
+#define RemoteFrameClientImpl_h
-#include "core/frame/FrameClient.h"
+#include "core/frame/RemoteFrameClient.h"
namespace blink {
-
class WebRemoteFrameImpl;
-class RemoteFrameClient : public FrameClient {
+class RemoteFrameClientImpl : public RemoteFrameClient {
public:
- explicit RemoteFrameClient(WebRemoteFrameImpl*);
+ explicit RemoteFrameClientImpl(WebRemoteFrameImpl*);
// FrameClient overrides:
virtual Frame* opener() const OVERRIDE;
@@ -28,6 +27,9 @@ public:
virtual bool willCheckAndDispatchMessageEvent(SecurityOrigin*, MessageEvent*, LocalFrame*) const OVERRIDE;
+ // RemoteFrameClient overrides:
+ virtual void navigate(const ResourceRequest&, bool shouldReplaceCurrentEntry) OVERRIDE;
+
WebRemoteFrameImpl* webFrame() const { return m_webFrame; }
private:
@@ -36,4 +38,4 @@ private:
} // namespace blink
-#endif // RemoteFrameClient_h
+#endif // RemoteFrameClientImpl_h
« no previous file with comments | « Source/web/RemoteFrameClient.cpp ('k') | Source/web/RemoteFrameClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698