Index: Source/web/RemoteFrameClient.cpp |
diff --git a/Source/web/RemoteFrameClient.cpp b/Source/web/RemoteFrameClient.cpp |
index ff9d6a1fee986d103d4348c9e8cc5878709b5384..fdc10d62e255b70527522e4ebfdec23d074b9e27 100644 |
--- a/Source/web/RemoteFrameClient.cpp |
+++ b/Source/web/RemoteFrameClient.cpp |
@@ -5,7 +5,9 @@ |
#include "config.h" |
#include "web/RemoteFrameClient.h" |
+#include "platform/exported/WrappedResourceRequest.h" |
#include "platform/weborigin/SecurityOrigin.h" |
+#include "platform/weborigin/SecurityPolicy.h" |
#include "web/WebLocalFrameImpl.h" |
#include "web/WebRemoteFrameImpl.h" |
@@ -64,4 +66,10 @@ bool RemoteFrameClient::willCheckAndDispatchMessageEvent( |
return true; |
} |
+void RemoteFrameClient::navigate(const ResourceRequest& request, bool shouldReplaceCurrentEntry) |
+{ |
+ if (m_webFrame->client()) |
+ m_webFrame->client()->navigate(m_webFrame, WrappedResourceRequest(request), shouldReplaceCurrentEntry); |
+} |
+ |
} // namespace blink |