Index: chrome/browser/chrome_content_browser_client.h |
diff --git a/chrome/browser/chrome_content_browser_client.h b/chrome/browser/chrome_content_browser_client.h |
index 468bd3b9f9233edf131d8d8ac79b27f4dc7c1fce..6b159a46d2d5e51a60d99044e09b3293e2264c88 100644 |
--- a/chrome/browser/chrome_content_browser_client.h |
+++ b/chrome/browser/chrome_content_browser_client.h |
@@ -67,6 +67,24 @@ class ChromeContentBrowserClient : public content::ContentBrowserClient { |
const GURL& effective_url) OVERRIDE; |
virtual GURL GetEffectiveURL(content::BrowserContext* browser_context, |
const GURL& url) OVERRIDE; |
+ virtual net::URLRequestContextGetter* CreateRequestContext( |
+ content::BrowserContext* browser_context, |
+ 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* CreateRequestContextForStoragePartition( |
+ content::BrowserContext* browser_context, |
+ 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::Interceptor> |
+ developer_protocol_handler) OVERRIDE; |
virtual bool IsHandledURL(const GURL& url) OVERRIDE; |
virtual bool IsSuitableHost(content::RenderProcessHost* process_host, |
const GURL& url) OVERRIDE; |