| Index: net/url_request/url_request_http_job.cc
|
| diff --git a/net/url_request/url_request_http_job.cc b/net/url_request/url_request_http_job.cc
|
| index 3c8b97f3ef55a9c823453f7f87fd5547071c2a6b..a25afcb2baa5651dd0b3fae40186fcce4f0d5a9c 100644
|
| --- a/net/url_request/url_request_http_job.cc
|
| +++ b/net/url_request/url_request_http_job.cc
|
| @@ -279,6 +279,13 @@ void URLRequestHttpJob::Kill() {
|
| URLRequestJob::Kill();
|
| }
|
|
|
| +void URLRequestHttpJob::GetConnectionAttempts(ConnectionAttempts* out) const {
|
| + if (transaction_)
|
| + transaction_->GetConnectionAttempts(out);
|
| + else
|
| + out->clear();
|
| +}
|
| +
|
| void URLRequestHttpJob::NotifyBeforeSendProxyHeadersCallback(
|
| const ProxyInfo& proxy_info,
|
| HttpRequestHeaders* request_headers) {
|
|
|