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 |