Index: third_party/WebKit/Source/core/fetch/FetchContext.cpp |
diff --git a/third_party/WebKit/Source/core/fetch/FetchContext.cpp b/third_party/WebKit/Source/core/fetch/FetchContext.cpp |
index 61b816332253a21f23492945218122f2d19f8092..265234e20da204437f25737346d0cc8843f0cfcb 100644 |
--- a/third_party/WebKit/Source/core/fetch/FetchContext.cpp |
+++ b/third_party/WebKit/Source/core/fetch/FetchContext.cpp |
@@ -29,7 +29,7 @@ |
*/ |
#include "core/fetch/FetchContext.h" |
- |
+#include "public/platform/WebCachePolicy.h" |
namespace blink { |
@@ -56,9 +56,9 @@ CachePolicy FetchContext::getCachePolicy() const |
return CachePolicyVerify; |
} |
-ResourceRequestCachePolicy FetchContext::resourceRequestCachePolicy(const ResourceRequest&, Resource::Type) const |
+WebCachePolicy FetchContext::resourceRequestCachePolicy(const ResourceRequest&, Resource::Type) const |
{ |
- return UseProtocolCachePolicy; |
+ return WebCachePolicy::UseProtocolCachePolicy; |
} |
void FetchContext::dispatchWillSendRequest(unsigned long, ResourceRequest&, const ResourceResponse&, const FetchInitiatorInfo&) |