| 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 a53496f2560e2fc527c85073da2026cc38f5e3a0..b4f4e02f81fa0884141b36bcd88d766cadf21d17 100644
|
| --- a/chrome/browser/chromeos/gdata/gdata_protocol_handler.cc
|
| +++ b/chrome/browser/chromeos/gdata/gdata_protocol_handler.cc
|
| @@ -33,6 +33,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;
|
| @@ -218,7 +219,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),
|
|
|