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..5ba42d842ffba0597aa6c67a58ad4438df0e9903 100644 |
--- a/net/url_request/url_request_http_job.h |
+++ b/net/url_request/url_request_http_job.h |
@@ -34,6 +34,7 @@ class HttpResponseInfo; |
class HttpTransaction; |
class HttpUserAgentSettings; |
class ProxyInfo; |
+class SSLPrivateKey; |
class UploadDataStream; |
class URLRequestContext; |
@@ -127,10 +128,12 @@ 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_private_key) override; |
void ContinueDespiteLastError() override; |
void ResumeNetworkStart() override; |
bool ReadRawData(IOBuffer* buf, int buf_size, int* bytes_read) override; |
+ |
void StopCaching() override; |
bool GetFullRequestHeaders(HttpRequestHeaders* headers) const override; |
int64 GetTotalReceivedBytes() const override; |