| Index: chrome/browser/chromeos/gdata/gdata_protocol_handler.cc
|
| diff --git a/chrome/browser/chromeos/gdata/gdata_protocol_handler.cc b/chrome/browser/chromeos/gdata/gdata_protocol_handler.cc
|
| index a52ef03dbb75dc5b4ce8ec5481c74ffd4f306b54..ac409aa41e446a4b1fb41dc87167e4fcc8e23cf3 100644
|
| --- a/chrome/browser/chromeos/gdata/gdata_protocol_handler.cc
|
| +++ b/chrome/browser/chromeos/gdata/gdata_protocol_handler.cc
|
| @@ -34,6 +34,7 @@
|
| #include "net/http/http_response_headers.h"
|
| #include "net/http/http_response_info.h"
|
| #include "net/url_request/url_request.h"
|
| +#include "net/url_request/url_request_context.h"
|
| #include "net/url_request/url_request_job.h"
|
|
|
| using content::BrowserThread;
|
| @@ -222,7 +223,7 @@ class GDataURLRequestJob : public net::URLRequestJob {
|
| };
|
|
|
| GDataURLRequestJob::GDataURLRequestJob(net::URLRequest* request)
|
| - : net::URLRequestJob(request),
|
| + : net::URLRequestJob(request, request->context()->network_delegate()),
|
| weak_ptr_factory_(ALLOW_THIS_IN_INITIALIZER_LIST(
|
| new base::WeakPtrFactory<GDataURLRequestJob>(this))),
|
| file_system_(NULL),
|
|
|