Index: Source/WebCore/platform/network/soup/ResourceHandleSoup.cpp |
=================================================================== |
--- Source/WebCore/platform/network/soup/ResourceHandleSoup.cpp (revision 141117) |
+++ Source/WebCore/platform/network/soup/ResourceHandleSoup.cpp (working copy) |
@@ -1286,6 +1286,14 @@ |
return false; |
} |
+bool ResourceHandle::willLoadFromCache(ResourceRequest&, Frame*) |
+{ |
+ // Not having this function means that we'll ask the user about re-posting a form |
+ // even when we go back to a page that's still in the cache. |
+ notImplemented(); |
+ return false; |
+} |
+ |
void ResourceHandle::loadResourceSynchronously(NetworkingContext* context, const ResourceRequest& request, StoredCredentials /*storedCredentials*/, ResourceError& error, ResourceResponse& response, Vector<char>& data) |
{ |
#if ENABLE(BLOB) |