| Index: content/public/browser/content_browser_client.cc
|
| diff --git a/content/public/browser/content_browser_client.cc b/content/public/browser/content_browser_client.cc
|
| index 07666fc557d14d3e9947608f514dc02405240c17..2273c3c22a8e84b6600f29e6d737d9c4a63f68dc 100644
|
| --- a/content/public/browser/content_browser_client.cc
|
| +++ b/content/public/browser/content_browser_client.cc
|
| @@ -36,6 +36,39 @@ bool ContentBrowserClient::ShouldUseProcessPerSite(
|
| return false;
|
| }
|
|
|
| +net::URLRequestContextGetter* ContentBrowserClient::CreateRequestContext(
|
| + BrowserContext* browser_context,
|
| + 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) {
|
| + return NULL;
|
| +}
|
| +
|
| +net::URLRequestContextGetter*
|
| +ContentBrowserClient::CreateRequestContextForStoragePartition(
|
| + 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::ProtocolHandler>
|
| + developer_protocol_handler,
|
| + scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| + chrome_protocol_handler,
|
| + scoped_ptr<net::URLRequestJobFactory::ProtocolHandler>
|
| + chrome_devtools_protocol_handler) {
|
| + return NULL;
|
| +}
|
| +
|
| bool ContentBrowserClient::IsHandledURL(const GURL& url) {
|
| return false;
|
| }
|
|
|