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 0da387471948fbbeb34673d42026aca56bce148b..2e71f5ddca0a2569496462266c0827c6b5ce4925 100644 |
--- a/chrome/browser/profiles/off_the_record_profile_impl.h |
+++ b/chrome/browser/profiles/off_the_record_profile_impl.h |
@@ -49,9 +49,15 @@ class OffTheRecordProfileImpl : public Profile, |
virtual PrefServiceSyncable* GetOffTheRecordPrefs() OVERRIDE; |
virtual net::URLRequestContextGetter* |
GetRequestContextForExtensions() OVERRIDE; |
- virtual net::URLRequestContextGetter* GetRequestContextForStoragePartition( |
+ virtual net::URLRequestContextGetter* CreateRequestContextForStoragePartition( |
const FilePath& partition_path, |
- bool in_memory) OVERRIDE; |
+ bool in_memory, |
+ scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
+ blob_protocol_handler, |
+ scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
+ file_system_protocol_handler, |
+ scoped_ptr<net::URLRequestJobFactory::Interceptor> |
+ developer_protocol_handler) OVERRIDE; |
virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE; |
virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE; |
virtual ProtocolHandlerRegistry* GetProtocolHandlerRegistry() OVERRIDE; |
@@ -89,6 +95,13 @@ class OffTheRecordProfileImpl : public Profile, |
virtual content::DownloadManagerDelegate* |
GetDownloadManagerDelegate() OVERRIDE; |
virtual net::URLRequestContextGetter* GetRequestContext() 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::Interceptor> |
+ developer_protocol_handler) OVERRIDE; |
virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess( |
int renderer_child_id) OVERRIDE; |
virtual net::URLRequestContextGetter* GetMediaRequestContext() OVERRIDE; |