Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(988)

Unified Diff: net/url_request/url_request_job.cc

Issue 2898573002: Refactor client cert private key handling. (Closed)
Patch Set: fix member order Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/url_request/url_request_job.cc
diff --git a/net/url_request/url_request_job.cc b/net/url_request/url_request_job.cc
index 8b5c00211f4dd48dcc0556969ef9738b398aaabe..5d8fd82190828b7fd6a475c8946cfc273d86dc0d 100644
--- a/net/url_request/url_request_job.cc
+++ b/net/url_request/url_request_job.cc
@@ -300,8 +300,9 @@ void URLRequestJob::CancelAuth() {
NOTREACHED();
}
-void URLRequestJob::ContinueWithCertificate(X509Certificate* client_cert,
- SSLPrivateKey* client_private_key) {
+void URLRequestJob::ContinueWithCertificate(
+ scoped_refptr<X509Certificate> client_cert,
+ scoped_refptr<SSLPrivateKey> client_private_key) {
// The derived class should implement this!
NOTREACHED();
}

Powered by Google App Engine
This is Rietveld 408576698