Index: net/http/http_network_transaction.h |
diff --git a/net/http/http_network_transaction.h b/net/http/http_network_transaction.h |
index bc6ce2cbe9490e3e8283e3b300cd901c6e4bb8c8..2a4cc002d667f099045e6e3512fe28c27fcc9e15 100644 |
--- a/net/http/http_network_transaction.h |
+++ b/net/http/http_network_transaction.h |
@@ -25,6 +25,7 @@ |
#include "net/socket/connection_attempts.h" |
#include "net/ssl/ssl_config_service.h" |
#include "net/ssl/ssl_failure_state.h" |
+#include "net/ssl/ssl_private_key.h" |
davidben
2015/09/25 20:10:11
Forward decl (or perhaps just not necessary since
svaldez
2015/09/28 16:54:52
Done.
|
#include "net/websockets/websocket_handshake_stream_base.h" |
namespace net { |
@@ -54,6 +55,7 @@ class NET_EXPORT_PRIVATE HttpNetworkTransaction |
const BoundNetLog& net_log) override; |
int RestartIgnoringLastError(const CompletionCallback& callback) override; |
int RestartWithCertificate(X509Certificate* client_cert, |
+ SSLPrivateKey* client_pkey, |
const CompletionCallback& callback) override; |
int RestartWithAuth(const AuthCredentials& credentials, |
const CompletionCallback& callback) override; |