Index: net/http/failing_http_transaction_factory.cc |
diff --git a/net/http/failing_http_transaction_factory.cc b/net/http/failing_http_transaction_factory.cc |
index f63cd4d26248a5336813fe35f30d49a47800a5c1..457e9a936f9e17d558396d345210caf6a37bfe92 100644 |
--- a/net/http/failing_http_transaction_factory.cc |
+++ b/net/http/failing_http_transaction_factory.cc |
@@ -23,6 +23,7 @@ class AuthCredentials; |
class BoundNetLog; |
class HttpRequestHeaders; |
class IOBuffer; |
+class SSLPrivateKey; |
class X509Certificate; |
namespace { |
@@ -41,6 +42,7 @@ class FailingHttpTransaction : public HttpTransaction { |
const BoundNetLog& net_log) override; |
int RestartIgnoringLastError(const CompletionCallback& callback) override; |
int RestartWithCertificate(X509Certificate* client_cert, |
+ SSLPrivateKey* client_private_key, |
const CompletionCallback& callback) override; |
int RestartWithAuth(const AuthCredentials& credentials, |
const CompletionCallback& callback) override; |
@@ -94,7 +96,8 @@ int FailingHttpTransaction::RestartIgnoringLastError( |
int FailingHttpTransaction::RestartWithCertificate( |
X509Certificate* client_cert, |
- const CompletionCallback& callback) { |
+ SSLPrivateKey* client_private_key, |
+ const CompletionCallback& callback) { |
return ERR_FAILED; |
} |
@@ -206,4 +209,3 @@ HttpNetworkSession* FailingHttpTransactionFactory::GetSession() { |
} |
} // namespace net |
- |