Index: chrome/browser/profiles/profile_impl.h |
diff --git a/chrome/browser/profiles/profile_impl.h b/chrome/browser/profiles/profile_impl.h |
index fc9165bddd1a0ca4a4463c03a8440a204a449a8b..94585f12f2c7a9de0421e3d60b00d58430d042f2 100644 |
--- a/chrome/browser/profiles/profile_impl.h |
+++ b/chrome/browser/profiles/profile_impl.h |
@@ -65,11 +65,24 @@ class ProfileImpl : 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* 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::URLRequestContextGetter* GetMediaRequestContext() OVERRIDE; |
virtual net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess( |
int renderer_child_id) OVERRIDE; |