Index: net/url_request/url_request.cc |
diff --git a/net/url_request/url_request.cc b/net/url_request/url_request.cc |
index cfacae0dee7dbc4b9526ab200e41ab5ac632c9fe..e55bdb896b54fdbf8e87932e8d99636d2cefbdee 100644 |
--- a/net/url_request/url_request.cc |
+++ b/net/url_request/url_request.cc |
@@ -848,10 +848,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() { |