Index: webkit/appcache/view_appcache_internals_job.cc |
diff --git a/webkit/appcache/view_appcache_internals_job.cc b/webkit/appcache/view_appcache_internals_job.cc |
index 94ee6015f2d65f28d92a30161bd27a68c99aaaca..4fddd483c5114448613588f06d54df1df3a88a63 100644 |
--- a/webkit/appcache/view_appcache_internals_job.cc |
+++ b/webkit/appcache/view_appcache_internals_job.cc |
@@ -22,6 +22,7 @@ |
#include "net/base/net_errors.h" |
#include "net/http/http_response_headers.h" |
#include "net/url_request/url_request.h" |
+#include "net/url_request/url_request_context.h" |
#include "net/url_request/url_request_simple_job.h" |
#include "net/url_request/view_cache_helper.h" |
#include "webkit/appcache/appcache.h" |
@@ -312,7 +313,8 @@ GURL ClearQuery(const GURL& url) { |
class BaseInternalsJob : public net::URLRequestSimpleJob { |
protected: |
BaseInternalsJob(net::URLRequest* request, AppCacheService* service) |
- : URLRequestSimpleJob(request), appcache_service_(service) {} |
+ : URLRequestSimpleJob(request, request->context()->network_delegate()), |
+ appcache_service_(service) {} |
virtual ~BaseInternalsJob() {} |
AppCacheService* appcache_service_; |