| 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 9b0ee736cf8ace63cb5461dd70fa5ce747d73f82..df86187abbb9267853415ee457483c6ed5267b1a 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),
|
|
|