Index: net/url_request/url_request.cc |
diff --git a/net/url_request/url_request.cc b/net/url_request/url_request.cc |
index cff804c8e6e2a20b138b3f57165938455dc8c417..b70dbed23701466b09d34804cacb349bc031a64a 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() { |