| Index: net/url_request/protocol_intercept_job_factory.cc
|
| diff --git a/net/url_request/protocol_intercept_job_factory.cc b/net/url_request/protocol_intercept_job_factory.cc
|
| index 1a1a95ff9867ac4e777fbf84adef82d6b7389441..d35259bf30c62a36ccf160b5d171170563a4d122 100644
|
| --- a/net/url_request/protocol_intercept_job_factory.cc
|
| +++ b/net/url_request/protocol_intercept_job_factory.cc
|
| @@ -22,20 +22,6 @@ ProtocolInterceptJobFactory::ProtocolInterceptJobFactory(
|
|
|
| ProtocolInterceptJobFactory::~ProtocolInterceptJobFactory() {}
|
|
|
| -bool ProtocolInterceptJobFactory::SetProtocolHandler(
|
| - const std::string& scheme, ProtocolHandler* protocol_handler) {
|
| - return job_factory_->SetProtocolHandler(scheme, protocol_handler);
|
| -}
|
| -
|
| -void ProtocolInterceptJobFactory::AddInterceptor(Interceptor* interceptor) {
|
| - return job_factory_->AddInterceptor(interceptor);
|
| -}
|
| -
|
| -URLRequestJob* ProtocolInterceptJobFactory::MaybeCreateJobWithInterceptor(
|
| - URLRequest* request, NetworkDelegate* network_delegate) const {
|
| - return job_factory_->MaybeCreateJobWithInterceptor(request, network_delegate);
|
| -}
|
| -
|
| URLRequestJob* ProtocolInterceptJobFactory::MaybeCreateJobWithProtocolHandler(
|
| const std::string& scheme,
|
| URLRequest* request,
|
| @@ -49,19 +35,6 @@ URLRequestJob* ProtocolInterceptJobFactory::MaybeCreateJobWithProtocolHandler(
|
| scheme, request, network_delegate);
|
| }
|
|
|
| -URLRequestJob* ProtocolInterceptJobFactory::MaybeInterceptRedirect(
|
| - const GURL& location,
|
| - URLRequest* request,
|
| - NetworkDelegate* network_delegate) const {
|
| - return job_factory_->MaybeInterceptRedirect(
|
| - location, request, network_delegate);
|
| -}
|
| -
|
| -URLRequestJob* ProtocolInterceptJobFactory::MaybeInterceptResponse(
|
| - URLRequest* request, NetworkDelegate* network_delegate) const {
|
| - return job_factory_->MaybeInterceptResponse(request, network_delegate);
|
| -}
|
| -
|
| bool ProtocolInterceptJobFactory::IsHandledProtocol(
|
| const std::string& scheme) const {
|
| return job_factory_->IsHandledProtocol(scheme);
|
|
|