| Index: chrome/browser/custom_handlers/protocol_handler_registry.h
|
| diff --git a/chrome/browser/custom_handlers/protocol_handler_registry.h b/chrome/browser/custom_handlers/protocol_handler_registry.h
|
| index 47feb178ceddc94f587b54a4ebbb2a8908117e51..c653bba8468c114b678651be3084a9758a4cc16b 100644
|
| --- a/chrome/browser/custom_handlers/protocol_handler_registry.h
|
| +++ b/chrome/browser/custom_handlers/protocol_handler_registry.h
|
| @@ -106,23 +106,10 @@ class ProtocolHandlerRegistry : public ProfileKeyedService {
|
| void Chain(scoped_ptr<net::URLRequestJobFactory> job_factory);
|
|
|
| // URLRequestJobFactory implementation.
|
| - virtual bool SetProtocolHandler(const std::string& scheme,
|
| - ProtocolHandler* protocol_handler) OVERRIDE;
|
| - virtual void AddInterceptor(Interceptor* interceptor) OVERRIDE;
|
| - virtual net::URLRequestJob* MaybeCreateJobWithInterceptor(
|
| - net::URLRequest* request,
|
| - net::NetworkDelegate* network_delegate) const OVERRIDE;
|
| virtual net::URLRequestJob* MaybeCreateJobWithProtocolHandler(
|
| const std::string& scheme,
|
| net::URLRequest* request,
|
| net::NetworkDelegate* network_delegate) const OVERRIDE;
|
| - virtual net::URLRequestJob* MaybeInterceptRedirect(
|
| - const GURL& location,
|
| - net::URLRequest* request,
|
| - net::NetworkDelegate* network_delegate) const OVERRIDE;
|
| - virtual net::URLRequestJob* MaybeInterceptResponse(
|
| - net::URLRequest* request,
|
| - net::NetworkDelegate* network_delegate) const OVERRIDE;
|
| virtual bool IsHandledProtocol(const std::string& scheme) const OVERRIDE;
|
| virtual bool IsHandledURL(const GURL& url) const OVERRIDE;
|
|
|
|
|