| Index: chrome/browser/profiles/profile_impl_io_data.cc
|
| ===================================================================
|
| --- chrome/browser/profiles/profile_impl_io_data.cc (revision 184663)
|
| +++ chrome/browser/profiles/profile_impl_io_data.cc (working copy)
|
| @@ -131,8 +131,6 @@
|
| scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| file_system_protocol_handler,
|
| scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| - developer_protocol_handler,
|
| - scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| chrome_protocol_handler,
|
| scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| chrome_devtools_protocol_handler,
|
| @@ -143,8 +141,8 @@
|
| DCHECK(!main_request_context_getter_);
|
| main_request_context_getter_ = ChromeURLRequestContextGetter::CreateOriginal(
|
| profile_, io_data_, blob_protocol_handler.Pass(),
|
| - file_system_protocol_handler.Pass(), developer_protocol_handler.Pass(),
|
| - chrome_protocol_handler.Pass(), chrome_devtools_protocol_handler.Pass());
|
| + file_system_protocol_handler.Pass(), chrome_protocol_handler.Pass(),
|
| + chrome_devtools_protocol_handler.Pass());
|
|
|
| io_data_->predictor_->InitNetworkPredictor(profile_->GetPrefs(),
|
| local_state,
|
| @@ -191,8 +189,6 @@
|
| scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| file_system_protocol_handler,
|
| scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| - developer_protocol_handler,
|
| - scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| chrome_protocol_handler,
|
| scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| chrome_devtools_protocol_handler) const {
|
| @@ -217,8 +213,7 @@
|
| ChromeURLRequestContextGetter::CreateOriginalForIsolatedApp(
|
| profile_, io_data_, descriptor,
|
| protocol_handler_interceptor.Pass(), blob_protocol_handler.Pass(),
|
| - file_system_protocol_handler.Pass(),
|
| - developer_protocol_handler.Pass(), chrome_protocol_handler.Pass(),
|
| + file_system_protocol_handler.Pass(), chrome_protocol_handler.Pass(),
|
| chrome_devtools_protocol_handler.Pass());
|
| app_request_context_getter_map_[descriptor] = context;
|
|
|
| @@ -320,8 +315,6 @@
|
| scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| file_system_protocol_handler,
|
| scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| - developer_protocol_handler,
|
| - scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| chrome_protocol_handler,
|
| scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| chrome_devtools_protocol_handler) const {
|
| @@ -461,8 +454,6 @@
|
| network_delegate(),
|
| main_context->ftp_transaction_factory(),
|
| main_context->ftp_auth_cache());
|
| - main_job_factory_.reset(new net::ProtocolInterceptJobFactory(
|
| - main_job_factory_.Pass(), developer_protocol_handler.Pass()));
|
| main_context->set_job_factory(main_job_factory_.get());
|
|
|
| #if defined(ENABLE_EXTENSIONS)
|
| @@ -536,8 +527,6 @@
|
| scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| file_system_protocol_handler,
|
| scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| - developer_protocol_handler,
|
| - scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| chrome_protocol_handler,
|
| scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| chrome_devtools_protocol_handler) const {
|
| @@ -633,8 +622,6 @@
|
| } else {
|
| top_job_factory = job_factory.PassAs<net::URLRequestJobFactory>();
|
| }
|
| - top_job_factory.reset(new net::ProtocolInterceptJobFactory(
|
| - top_job_factory.Pass(), developer_protocol_handler.Pass()));
|
| context->SetJobFactory(top_job_factory.Pass());
|
|
|
| return context;
|
| @@ -705,8 +692,6 @@
|
| scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| file_system_protocol_handler,
|
| scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| - developer_protocol_handler,
|
| - scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| chrome_protocol_handler,
|
| scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| chrome_devtools_protocol_handler) const {
|
| @@ -716,7 +701,6 @@
|
| protocol_handler_interceptor.Pass(),
|
| blob_protocol_handler.Pass(),
|
| file_system_protocol_handler.Pass(),
|
| - developer_protocol_handler.Pass(),
|
| chrome_protocol_handler.Pass(),
|
| chrome_devtools_protocol_handler.Pass());
|
| DCHECK(app_request_context);
|
|
|