Chromium Code Reviews| Index: net/url_request/url_request_http_job.h |
| diff --git a/net/url_request/url_request_http_job.h b/net/url_request/url_request_http_job.h |
| index 212ab51c3bc3f42b7b1ca392fb92b10e2ce01dde..a646a53a85ca49fadc0854ed82825fb7a9bf6b7c 100644 |
| --- a/net/url_request/url_request_http_job.h |
| +++ b/net/url_request/url_request_http_job.h |
| @@ -40,6 +40,7 @@ class ProxyInfo; |
| class SSLPrivateKey; |
| class UploadDataStream; |
| class URLRequestContext; |
| +class URLRequestRedirectJob; |
|
mmenke
2016/06/17 15:08:07
Rather not forward declare this - can either make
Mike West
2016/06/17 16:35:16
Done.
|
| // A URLRequestJob subclass that is built on top of HttpTransaction. It |
| // provides an implementation for both HTTP and HTTPS. |
| @@ -56,6 +57,10 @@ class NET_EXPORT_PRIVATE URLRequestHttpJob : public URLRequestJob { |
| ~URLRequestHttpJob() override; |
| + static URLRequestRedirectJob* MaybeInternallyRedirect( |
| + URLRequest* request, |
| + NetworkDelegate* network_delegate); |
|
mmenke
2016/06/17 15:08:07
Actually, if this is static, can we just move it i
Mike West
2016/06/17 16:35:17
Done.
|
| + |
| // Overridden from URLRequestJob: |
| void SetPriority(RequestPriority priority) override; |
| void Start() override; |