Index: net/http/http_transaction.h |
diff --git a/net/http/http_transaction.h b/net/http/http_transaction.h |
index eff45d10c5648d618e4366a6ea91a398b06016b1..e76a7108dd01c9b6d9319ca485b93519b4eb9626 100644 |
--- a/net/http/http_transaction.h |
+++ b/net/http/http_transaction.h |
@@ -85,9 +85,10 @@ class NET_EXPORT_PRIVATE HttpTransaction { |
virtual int RestartIgnoringLastError(const CompletionCallback& callback) = 0; |
// Restarts the HTTP transaction with a client certificate. |
- virtual int RestartWithCertificate(X509Certificate* client_cert, |
- SSLPrivateKey* client_private_key, |
- const CompletionCallback& callback) = 0; |
+ virtual int RestartWithCertificate( |
+ scoped_refptr<X509Certificate> client_cert, |
+ scoped_refptr<SSLPrivateKey> client_private_key, |
+ const CompletionCallback& callback) = 0; |
// Restarts the HTTP transaction with authentication credentials. |
virtual int RestartWithAuth(const AuthCredentials& credentials, |