| 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 b34f825c774e18b5c4e99ee4dee650d4c4efe033..c73983e15523fb37612e8ff10dbcf0132f59ceec 100644
|
| --- a/net/url_request/url_request_http_job.cc
|
| +++ b/net/url_request/url_request_http_job.cc
|
| @@ -1258,7 +1258,8 @@ void URLRequestHttpJob::CancelAuth() {
|
| }
|
|
|
| void URLRequestHttpJob::ContinueWithCertificate(
|
| - X509Certificate* client_cert) {
|
| + X509Certificate* client_cert,
|
| + SSLPrivateKey* client_private_key) {
|
| DCHECK(transaction_.get());
|
|
|
| DCHECK(!response_info_) << "should not have a response yet";
|
| @@ -1270,7 +1271,8 @@ void URLRequestHttpJob::ContinueWithCertificate(
|
| // be notifying our consumer asynchronously via OnStartCompleted.
|
| SetStatus(URLRequestStatus(URLRequestStatus::IO_PENDING, 0));
|
|
|
| - int rv = transaction_->RestartWithCertificate(client_cert, start_callback_);
|
| + int rv = transaction_->RestartWithCertificate(client_cert, client_private_key,
|
| + start_callback_);
|
| if (rv == ERR_IO_PENDING)
|
| return;
|
|
|
|
|