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

Unified Diff: net/http/http_cache_transaction.h

Issue 1304143010: Plumbing SSLPrivateKey Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 5 years, 3 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/http/http_cache_transaction.h
diff --git a/net/http/http_cache_transaction.h b/net/http/http_cache_transaction.h
index 303e0e3c0c4e6312e137a9386333b2ae4bf8e538..a1286fb013f0496d6a0968a51524e5a81397220f 100644
--- a/net/http/http_cache_transaction.h
+++ b/net/http/http_cache_transaction.h
@@ -31,6 +31,7 @@
#include "net/http/partial_data.h"
#include "net/log/net_log.h"
#include "net/socket/connection_attempts.h"
+#include "net/ssl/ssl_private_key.h"
davidben 2015/09/25 20:10:11 Forward decl
svaldez 2015/09/28 16:54:52 Done.
#include "net/websockets/websocket_handshake_stream_base.h"
namespace net {
@@ -133,6 +134,7 @@ class HttpCache::Transaction : public HttpTransaction {
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;
@@ -331,7 +333,8 @@ class HttpCache::Transaction : public HttpTransaction {
// Called to restart a network transaction with a client certificate.
// Returns network error code.
- int RestartNetworkRequestWithCertificate(X509Certificate* client_cert);
+ int RestartNetworkRequestWithCertificate(X509Certificate* client_cert,
+ SSLPrivateKey* client_pkey);
// Called to restart a network transaction with authentication credentials.
// Returns network error code.

Powered by Google App Engine
This is Rietveld 408576698