Index: chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc |
diff --git a/chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc b/chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc |
index e28c034b8998d15762cfb93f736012e4d5a3ec91..d1afb47c7f801e53bcab725101d5df1d450b5ff9 100644 |
--- a/chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc |
+++ b/chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc |
@@ -69,6 +69,17 @@ class FakeURLRequestJobFactory : public net::URLRequestJobFactory { |
net::NetworkDelegate* network_delegate) const override { |
return NULL; |
} |
+ net::URLRequestJob* MaybeInterceptResponse( |
+ net::URLRequest* request, |
+ net::NetworkDelegate* network_delegate) const override { |
+ return NULL; |
+ } |
+ net::URLRequestJob* MaybeInterceptRedirect( |
+ net::URLRequest* request, |
+ net::NetworkDelegate* network_delegate, |
+ const GURL& location) const override { |
+ return NULL; |
+ } |
bool IsHandledProtocol(const std::string& scheme) const override { |
return false; |
} |