| 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 72a39f3424864429d0d4c2418603dd5ae931130a..3bcf18dc0bb2c9db59ba13a23fba354f87a748b3 100644
|
| --- a/chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc
|
| +++ b/chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc
|
| @@ -59,34 +59,12 @@ void AssertIntercepted(
|
| // ProtocolHandlerRegistry properly handled a job creation request.
|
| class FakeURLRequestJobFactory : public net::URLRequestJobFactory {
|
| // net::URLRequestJobFactory implementation:
|
| - virtual bool SetProtocolHandler(const std::string& scheme,
|
| - ProtocolHandler* protocol_handler) OVERRIDE {
|
| - return false;
|
| - }
|
| - virtual void AddInterceptor(Interceptor* interceptor) OVERRIDE {
|
| - }
|
| - virtual net::URLRequestJob* MaybeCreateJobWithInterceptor(
|
| - net::URLRequest* request,
|
| - net::NetworkDelegate* network_delegate) const OVERRIDE {
|
| - return NULL;
|
| - }
|
| virtual net::URLRequestJob* MaybeCreateJobWithProtocolHandler(
|
| const std::string& scheme,
|
| net::URLRequest* request,
|
| net::NetworkDelegate* network_delegate) const OVERRIDE {
|
| return NULL;
|
| }
|
| - virtual net::URLRequestJob* MaybeInterceptRedirect(
|
| - const GURL& location,
|
| - net::URLRequest* request,
|
| - net::NetworkDelegate* network_delegate) const OVERRIDE {
|
| - return NULL;
|
| - }
|
| - virtual net::URLRequestJob* MaybeInterceptResponse(
|
| - net::URLRequest* request,
|
| - net::NetworkDelegate* network_delegate) const OVERRIDE {
|
| - return NULL;
|
| - }
|
| virtual bool IsHandledProtocol(const std::string& scheme) const OVERRIDE {
|
| return false;
|
| }
|
|
|