Index: net/url_request/url_request_intercepting_job_factory.cc |
diff --git a/net/url_request/url_request_intercepting_job_factory.cc b/net/url_request/url_request_intercepting_job_factory.cc |
index 43789e1c27ce1bc2927a13687ba83ef714a41325..9773c40e0932f2a6152d228cdfdaa3e89ea27593 100644 |
--- a/net/url_request/url_request_intercepting_job_factory.cc |
+++ b/net/url_request/url_request_intercepting_job_factory.cc |
@@ -32,6 +32,22 @@ MaybeCreateJobWithProtocolHandler( |
scheme, request, network_delegate); |
} |
+net::URLRequestJob* URLRequestInterceptingJobFactory::MaybeInterceptResponse( |
+ net::URLRequest* request, |
+ net::NetworkDelegate* network_delegate) const { |
+ return interceptor_->MaybeInterceptResponse(request, |
+ network_delegate); |
mmenke
2014/10/30 19:59:24
These aren't right. These should work just like M
bengr
2014/10/31 00:45:31
Right. Done.
|
+} |
+ |
+net::URLRequestJob* URLRequestInterceptingJobFactory::MaybeInterceptRedirect( |
+ net::URLRequest* request, |
+ net::NetworkDelegate* network_delegate, |
+ const GURL& location) const { |
+ return interceptor_->MaybeInterceptRedirect(request, |
+ network_delegate, |
+ location); |
+} |
+ |
bool URLRequestInterceptingJobFactory::IsHandledProtocol( |
const std::string& scheme) const { |
return job_factory_->IsHandledProtocol(scheme); |