| Index: chrome/browser/custom_handlers/protocol_handler_registry.cc
|
| diff --git a/chrome/browser/custom_handlers/protocol_handler_registry.cc b/chrome/browser/custom_handlers/protocol_handler_registry.cc
|
| index 72f134d64b226ee68dbb230ea0500d693a1e55c4..9451f67fcca6fd3f038c5d81a578877ffb39f340 100644
|
| --- a/chrome/browser/custom_handlers/protocol_handler_registry.cc
|
| +++ b/chrome/browser/custom_handlers/protocol_handler_registry.cc
|
| @@ -190,6 +190,21 @@ MaybeCreateJobWithProtocolHandler(
|
| scheme, request, network_delegate);
|
| }
|
|
|
| +net::URLRequestJob*
|
| +ProtocolHandlerRegistry::JobInterceptorFactory::MaybeInterceptResponse(
|
| + net::URLRequest* request,
|
| + net::NetworkDelegate* network_delegate) const {
|
| + return NULL;
|
| +}
|
| +
|
| +net::URLRequestJob*
|
| +ProtocolHandlerRegistry::JobInterceptorFactory::MaybeInterceptRedirect(
|
| + net::URLRequest* request,
|
| + net::NetworkDelegate* network_delegate,
|
| + const GURL& location) const {
|
| + return NULL;
|
| +}
|
| +
|
| bool ProtocolHandlerRegistry::JobInterceptorFactory::IsHandledProtocol(
|
| const std::string& scheme) const {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
|
|
|