| Index: webkit/blob/blob_url_request_job.cc
|
| diff --git a/webkit/blob/blob_url_request_job.cc b/webkit/blob/blob_url_request_job.cc
|
| index 2fda6b57c35e5ddb6f49e34abb0cce1261759c3d..80e382b554a9685141050e48fa23da99b867999f 100644
|
| --- a/webkit/blob/blob_url_request_job.cc
|
| +++ b/webkit/blob/blob_url_request_job.cc
|
| @@ -18,6 +18,7 @@
|
| #include "net/http/http_response_info.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_error_job.h"
|
| #include "net/url_request/url_request_status.h"
|
| #include "webkit/blob/local_file_stream_reader.h"
|
| @@ -49,7 +50,7 @@ BlobURLRequestJob::BlobURLRequestJob(
|
| net::URLRequest* request,
|
| BlobData* blob_data,
|
| base::MessageLoopProxy* file_thread_proxy)
|
| - : net::URLRequestJob(request),
|
| + : net::URLRequestJob(request, request->context()->network_delegate()),
|
| ALLOW_THIS_IN_INITIALIZER_LIST(weak_factory_(this)),
|
| blob_data_(blob_data),
|
| file_thread_proxy_(file_thread_proxy),
|
|
|