Index: content/public/test/test_browser_context.h |
diff --git a/content/public/test/test_browser_context.h b/content/public/test/test_browser_context.h |
index 5a93376055559b6edc3fe143f26baec3c4daaed4..4aed971b872457f2d444cd9c90fb490acfa04aa1 100644 |
--- a/content/public/test/test_browser_context.h |
+++ b/content/public/test/test_browser_context.h |
@@ -31,11 +31,24 @@ class TestBrowserContext : public BrowserContext { |
virtual bool IsOffTheRecord() const OVERRIDE; |
virtual 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; |