Index: content/browser/net/view_http_cache_job_factory.h |
diff --git a/content/browser/net/view_http_cache_job_factory.h b/content/browser/net/view_http_cache_job_factory.h |
index abd577776f471cd8e19f2cbe9c8f21b3002d8c2d..88c84da336f0fd548a23b10aa827e62003e98a83 100644 |
--- a/content/browser/net/view_http_cache_job_factory.h |
+++ b/content/browser/net/view_http_cache_job_factory.h |
@@ -6,6 +6,7 @@ |
#define CONTENT_BROWSER_NET_VIEW_HTTP_CACHE_JOB_FACTORY_H_ |
namespace net { |
+class NetworkDelegate; |
class URLRequest; |
class URLRequestJob; |
} // namespace net |
@@ -15,7 +16,8 @@ class GURL; |
class ViewHttpCacheJobFactory { |
public: |
static bool IsSupportedURL(const GURL& url); |
- static net::URLRequestJob* CreateJobForRequest(net::URLRequest* request); |
+ static net::URLRequestJob* CreateJobForRequest( |
+ net::URLRequest* request, net::NetworkDelegate* network_delegate); |
}; |
#endif // CONTENT_BROWSER_NET_VIEW_HTTP_CACHE_JOB_FACTORY_H_ |