| Index: content/shell/shell_url_request_context_getter.cc
|
| ===================================================================
|
| --- content/shell/shell_url_request_context_getter.cc (revision 184663)
|
| +++ content/shell/shell_url_request_context_getter.cc (working copy)
|
| @@ -45,8 +45,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)
|
| @@ -56,7 +54,6 @@
|
| file_loop_(file_loop),
|
| blob_protocol_handler_(blob_protocol_handler.Pass()),
|
| file_system_protocol_handler_(file_system_protocol_handler.Pass()),
|
| - developer_protocol_handler_(developer_protocol_handler.Pass()),
|
| chrome_protocol_handler_(chrome_protocol_handler.Pass()),
|
| chrome_devtools_protocol_handler_(
|
| chrome_devtools_protocol_handler.Pass()) {
|
| @@ -186,9 +183,7 @@
|
| chrome::kChromeDevToolsScheme,
|
| chrome_devtools_protocol_handler_.release());
|
| DCHECK(set_protocol);
|
| - storage_->set_job_factory(new net::ProtocolInterceptJobFactory(
|
| - job_factory.PassAs<net::URLRequestJobFactory>(),
|
| - developer_protocol_handler_.Pass()));
|
| + storage_->set_job_factory(job_factory.release());
|
| }
|
|
|
| return url_request_context_.get();
|
|
|