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

Unified Diff: net/url_request/url_request_http_job.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/url_request/url_request_http_job.h
diff --git a/net/url_request/url_request_http_job.h b/net/url_request/url_request_http_job.h
index f72cb15bd4c6b4cc4a48f2d51e80a402c1b4c9e8..e90b380cb5eec22d1a4634be60cc2e9a27d5289f 100644
--- a/net/url_request/url_request_http_job.h
+++ b/net/url_request/url_request_http_job.h
@@ -22,6 +22,7 @@
#include "net/filter/filter.h"
#include "net/http/http_request_info.h"
#include "net/socket/connection_attempts.h"
+#include "net/ssl/ssl_private_key.h"
davidben 2015/09/25 20:10:12 Nit: forward decl.
svaldez 2015/09/28 16:54:53 Done.
#include "net/url_request/url_request_backoff_manager.h"
#include "net/url_request/url_request_job.h"
#include "net/url_request/url_request_throttler_entry_interface.h"
@@ -127,7 +128,8 @@ class NET_EXPORT_PRIVATE URLRequestHttpJob : public URLRequestJob {
void GetAuthChallengeInfo(scoped_refptr<AuthChallengeInfo>*) override;
void SetAuth(const AuthCredentials& credentials) override;
void CancelAuth() override;
- void ContinueWithCertificate(X509Certificate* client_cert) override;
+ void ContinueWithCertificate(X509Certificate* client_cert,
+ SSLPrivateKey* client_pkey) override;
void ContinueDespiteLastError() override;
void ResumeNetworkStart() override;
bool ReadRawData(IOBuffer* buf, int buf_size, int* bytes_read) override;

Powered by Google App Engine
This is Rietveld 408576698