| Index: webkit/appcache/appcache_url_request_job.cc
|
| diff --git a/webkit/appcache/appcache_url_request_job.cc b/webkit/appcache/appcache_url_request_job.cc
|
| index 3ca1bdf70748a85c4b7a448762234034e273cdf6..2c8efa708fc96123e840098603a2ea0c1ca9ad5f 100644
|
| --- a/webkit/appcache/appcache_url_request_job.cc
|
| +++ b/webkit/appcache/appcache_url_request_job.cc
|
| @@ -18,6 +18,7 @@
|
| #include "net/http/http_response_headers.h"
|
| #include "net/http/http_util.h"
|
| #include "net/url_request/url_request.h"
|
| +#include "net/url_request/url_request_context.h"
|
| #include "net/url_request/url_request_status.h"
|
| #include "webkit/appcache/appcache_service.h"
|
|
|
| @@ -25,7 +26,8 @@ namespace appcache {
|
|
|
| AppCacheURLRequestJob::AppCacheURLRequestJob(
|
| net::URLRequest* request, AppCacheStorage* storage)
|
| - : net::URLRequestJob(request), storage_(storage),
|
| + : net::URLRequestJob(request, request->context()->network_delegate()),
|
| + storage_(storage),
|
| has_been_started_(false), has_been_killed_(false),
|
| delivery_type_(AWAITING_DELIVERY_ORDERS),
|
| group_id_(0), cache_id_(kNoCacheId), is_fallback_(false),
|
|
|