Chromium Code Reviews| 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 87c7095d975d2615418466b5d9fd12d015a048ed..1aaf02d78a218debdd0be5b4f566fc334f465526 100644 |
| --- a/chrome/browser/profiles/off_the_record_profile_impl.h |
| +++ b/chrome/browser/profiles/off_the_record_profile_impl.h |
| @@ -50,9 +50,15 @@ class OffTheRecordProfileImpl : public Profile, |
| virtual PrefService* 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; |
|
mmenke
2012/12/20 16:55:06
Declaration order should match profile.h
|
| virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE; |
| virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE; |
| virtual ProtocolHandlerRegistry* GetProtocolHandlerRegistry() OVERRIDE; |
| @@ -91,6 +97,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; |
|
mmenke
2012/12/20 16:55:06
This is not part of the BrowserContext. Should go
|
| virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess( |
| int renderer_child_id) OVERRIDE; |
| virtual net::URLRequestContextGetter* GetMediaRequestContext() OVERRIDE; |