| Index: chrome/browser/profiles/profile_impl.cc
|
| ===================================================================
|
| --- chrome/browser/profiles/profile_impl.cc (revision 184663)
|
| +++ chrome/browser/profiles/profile_impl.cc (working copy)
|
| @@ -824,15 +824,12 @@
|
| 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) {
|
| return io_data_.CreateMainRequestContextGetter(
|
| blob_protocol_handler.Pass(),
|
| file_system_protocol_handler.Pass(),
|
| - developer_protocol_handler.Pass(),
|
| chrome_protocol_handler.Pass(),
|
| chrome_devtools_protocol_handler.Pass(),
|
| g_browser_process->local_state(),
|
| @@ -891,15 +888,13 @@
|
| 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) {
|
| return io_data_.CreateIsolatedAppRequestContextGetter(
|
| partition_path, in_memory, 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());
|
| }
|
|
|
| net::SSLConfigService* ProfileImpl::GetSSLConfigService() {
|
|
|