| 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 ab54350c7d2f96637aa11fc8fb5a7d6b646f64c3..7a1f09e080ca7e33fa0f3239ffafee5626e68dee 100644
|
| --- a/chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc
|
| +++ b/chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc
|
| @@ -69,6 +69,20 @@ class FakeURLRequestJobFactory : public net::URLRequestJobFactory {
|
| net::NetworkDelegate* network_delegate) const override {
|
| return NULL;
|
| }
|
| +
|
| + net::URLRequestJob* MaybeInterceptRedirect(
|
| + net::URLRequest* request,
|
| + net::NetworkDelegate* network_delegate,
|
| + const GURL& location) const override {
|
| + return nullptr;
|
| + }
|
| +
|
| + net::URLRequestJob* MaybeInterceptResponse(
|
| + net::URLRequest* request,
|
| + net::NetworkDelegate* network_delegate) const override {
|
| + return nullptr;
|
| + }
|
| +
|
| bool IsHandledProtocol(const std::string& scheme) const override {
|
| return false;
|
| }
|
|
|