Index: chrome/browser/profiles/profile_impl.h |
diff --git a/chrome/browser/profiles/profile_impl.h b/chrome/browser/profiles/profile_impl.h |
index 87d2c1d4f7bf1b5ffc7f943a9abd369cb169e4dc..cf2457a146732294c981c8c8dadf733c62523847 100644 |
--- a/chrome/browser/profiles/profile_impl.h |
+++ b/chrome/browser/profiles/profile_impl.h |
@@ -67,9 +67,6 @@ class ProfileImpl : public Profile, |
virtual net::URLRequestContextGetter* GetRequestContext() OVERRIDE; |
virtual net::URLRequestContextGetter* GetRequestContextForRenderProcess( |
int renderer_child_id) OVERRIDE; |
- virtual net::URLRequestContextGetter* GetRequestContextForStoragePartition( |
- const FilePath& partition_path, |
- bool in_memory) OVERRIDE; |
virtual net::URLRequestContextGetter* GetMediaRequestContext() OVERRIDE; |
virtual net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess( |
int renderer_child_id) OVERRIDE; |
@@ -109,6 +106,30 @@ class ProfileImpl : public Profile, |
virtual ProtocolHandlerRegistry* GetProtocolHandlerRegistry() OVERRIDE; |
virtual bool IsSameProfile(Profile* profile) OVERRIDE; |
virtual base::Time GetStartTime() const 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; |
+ virtual net::URLRequestContextGetter* CreateRequestContextForStoragePartition( |
+ const 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; |
virtual FilePath last_selected_directory() OVERRIDE; |
virtual void set_last_selected_directory(const FilePath& path) OVERRIDE; |
virtual chrome_browser_net::Predictor* GetNetworkPredictor() OVERRIDE; |