| Index: chrome/browser/profiles/profile_io_data.cc
|
| diff --git a/chrome/browser/profiles/profile_io_data.cc b/chrome/browser/profiles/profile_io_data.cc
|
| index c73a21c24ab52d31bf6176b4c4de3e55ce716d96..2397f44633a28aa346284a7f127a9bfc08de2841 100644
|
| --- a/chrome/browser/profiles/profile_io_data.cc
|
| +++ b/chrome/browser/profiles/profile_io_data.cc
|
| @@ -608,8 +608,8 @@ void ProfileIOData::ApplyProfileParamsToContext(
|
| context->set_ssl_config_service(profile_params_->ssl_config_service);
|
| }
|
|
|
| -void ProfileIOData::SetUpJobFactoryDefaults(
|
| - net::URLRequestJobFactoryImpl* job_factory,
|
| +scoped_ptr<net::URLRequestJobFactory> ProfileIOData::SetUpJobFactoryDefaults(
|
| + scoped_ptr<net::URLRequestJobFactoryImpl> job_factory,
|
| scoped_ptr<net::URLRequestJobFactory::Interceptor>
|
| protocol_handler_interceptor,
|
| net::NetworkDelegate* network_delegate,
|
| @@ -672,6 +672,7 @@ void ProfileIOData::SetUpJobFactoryDefaults(
|
| new net::FtpProtocolHandler(ftp_transaction_factory,
|
| ftp_auth_cache));
|
| #endif // !defined(DISABLE_FTP_SUPPORT)
|
| + return job_factory.PassAs<net::URLRequestJobFactory>();
|
| }
|
|
|
| void ProfileIOData::ShutdownOnUIThread() {
|
|
|