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 dac461d01031d3d780531e13518515a030483747..a452ec225f271e9e174d070c8250d3c2d9f04b56 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; |