Index: net/url_request/url_request.cc |
diff --git a/net/url_request/url_request.cc b/net/url_request/url_request.cc |
index ad399b9ea081c51ed85b81c790be9b1215964550..1f26aa2c6ff98c174597b81a30827039c2a13825 100644 |
--- a/net/url_request/url_request.cc |
+++ b/net/url_request/url_request.cc |
@@ -844,10 +844,11 @@ void URLRequest::CancelAuth() { |
job_->CancelAuth(); |
} |
-void URLRequest::ContinueWithCertificate(X509Certificate* client_cert) { |
+void URLRequest::ContinueWithCertificate(X509Certificate* client_cert, |
+ SSLPrivateKey* client_private_key) { |
DCHECK(job_.get()); |
- job_->ContinueWithCertificate(client_cert); |
+ job_->ContinueWithCertificate(client_cert, client_private_key); |
} |
void URLRequest::ContinueDespiteLastError() { |