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..cbe64cb83a7c0f1fbb0a8777dd357d59e64421b1 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::MaybeInterceptRedirect( |
+ net::URLRequest* request, |
+ net::NetworkDelegate* network_delegate, |
+ const GURL& location) const { |
+ return NULL; |
+} |
+ |
+net::URLRequestJob* |
+ProtocolHandlerRegistry::JobInterceptorFactory::MaybeInterceptResponse( |
+ net::URLRequest* request, |
+ net::NetworkDelegate* network_delegate) const { |
+ return NULL; |
+} |
+ |
bool ProtocolHandlerRegistry::JobInterceptorFactory::IsHandledProtocol( |
const std::string& scheme) const { |
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |