Chromium Code Reviews| Index: net/url_request/url_request_http_job.h |
| =================================================================== |
| --- net/url_request/url_request_http_job.h (revision 147723) |
| +++ net/url_request/url_request_http_job.h (working copy) |
| @@ -92,6 +92,8 @@ |
| virtual HostPortPair GetSocketAddress() const OVERRIDE; |
| virtual void NotifyURLRequestDestroyed() OVERRIDE; |
|
rvargas (doing something else)
2012/07/23 22:22:36
nit: remove line
tburkard
2012/07/24 01:03:12
Done.
|
| + virtual void OnDetachRequest() OVERRIDE; |
| + |
| HttpRequestInfo request_info_; |
| const HttpResponseInfo* response_info_; |
| @@ -143,6 +145,8 @@ |
| class HttpFilterContext; |
|
rvargas (doing something else)
2012/07/23 22:22:36
nit: remove line
tburkard
2012/07/24 01:03:12
Done.
|
| + class HttpTransactionDelegateImpl; |
| + |
| virtual ~URLRequestHttpJob(); |
| void RecordTimer(); |
| @@ -234,6 +238,8 @@ |
| // to inform the NetworkDelegate that it may not call back. |
| bool awaiting_callback_; |
| + scoped_ptr<HttpTransactionDelegateImpl> http_transaction_delegate_; |
| + |
| DISALLOW_COPY_AND_ASSIGN(URLRequestHttpJob); |
| }; |