| Index: chrome/browser/profiles/profile_impl.cc
 | 
| diff --git a/chrome/browser/profiles/profile_impl.cc b/chrome/browser/profiles/profile_impl.cc
 | 
| index 128197db8db8c7b47a53f5ba27c0ac0145a0aaf9..2b1020dc73f7322b079fb6a355b3909dc8ca2441 100644
 | 
| --- a/chrome/browser/profiles/profile_impl.cc
 | 
| +++ b/chrome/browser/profiles/profile_impl.cc
 | 
| @@ -821,22 +821,9 @@ base::FilePath ProfileImpl::GetPrefFilePath() {
 | 
|  }
 | 
|  
 | 
|  net::URLRequestContextGetter* ProfileImpl::CreateRequestContext(
 | 
| -    scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
 | 
| -        blob_protocol_handler,
 | 
| -    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) {
 | 
| +    content::ProtocolHandlerMap* protocol_handlers) {
 | 
|    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(),
 | 
| +      protocol_handlers,
 | 
|        g_browser_process->local_state(),
 | 
|        g_browser_process->io_thread());
 | 
|  }
 | 
| @@ -888,20 +875,9 @@ net::URLRequestContextGetter*
 | 
|  ProfileImpl::CreateRequestContextForStoragePartition(
 | 
|      const base::FilePath& partition_path,
 | 
|      bool in_memory,
 | 
| -    scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
 | 
| -        blob_protocol_handler,
 | 
| -    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) {
 | 
| +    content::ProtocolHandlerMap* protocol_handlers) {
 | 
|    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());
 | 
| +      partition_path, in_memory, protocol_handlers);
 | 
|  }
 | 
|  
 | 
|  net::SSLConfigService* ProfileImpl::GetSSLConfigService() {
 | 
| 
 |