| Index: chrome/browser/profiles/off_the_record_profile_impl.h
 | 
| diff --git a/chrome/browser/profiles/off_the_record_profile_impl.h b/chrome/browser/profiles/off_the_record_profile_impl.h
 | 
| index c26b3d3aabf66ebdce7e64cc4df613fc1e08a106..4b7759e6d1075bbbbcbf6d4c184d7cfcef8b5dff 100644
 | 
| --- a/chrome/browser/profiles/off_the_record_profile_impl.h
 | 
| +++ b/chrome/browser/profiles/off_the_record_profile_impl.h
 | 
| @@ -11,6 +11,7 @@
 | 
|  #include "chrome/browser/profiles/off_the_record_profile_io_data.h"
 | 
|  #include "chrome/browser/profiles/profile.h"
 | 
|  #include "chrome/browser/ui/browser_list.h"
 | 
| +#include "content/public/browser/content_browser_client.h"
 | 
|  #include "content/public/browser/host_zoom_map.h"
 | 
|  
 | 
|  using base::Time;
 | 
| @@ -50,29 +51,11 @@ class OffTheRecordProfileImpl : public Profile {
 | 
|    virtual net::URLRequestContextGetter*
 | 
|        GetRequestContextForExtensions() OVERRIDE;
 | 
|    virtual net::URLRequestContextGetter* 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) OVERRIDE;
 | 
| +      content::ProtocolHandlerMap* protocol_handlers) OVERRIDE;
 | 
|    virtual net::URLRequestContextGetter* 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) OVERRIDE;
 | 
| +      content::ProtocolHandlerMap* protocol_handlers) OVERRIDE;
 | 
|    virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE;
 | 
|    virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE;
 | 
|    virtual ProtocolHandlerRegistry* GetProtocolHandlerRegistry() OVERRIDE;
 | 
| 
 |