Refactor client cert private key handling.
https://codereview.chromium.org/2898573002
This commit is contained in:
parent
b69913975b
commit
5831a5ffa1
6 changed files with 22 additions and 11 deletions
|
@ -34,9 +34,10 @@ class DevToolsNetworkTransaction : public net::HttpTransaction {
|
|||
const net::NetLogWithSource& net_log) override;
|
||||
int RestartIgnoringLastError(
|
||||
const net::CompletionCallback& callback) override;
|
||||
int RestartWithCertificate(net::X509Certificate* client_cert,
|
||||
net::SSLPrivateKey* client_private_key,
|
||||
const net::CompletionCallback& callback) override;
|
||||
int RestartWithCertificate(
|
||||
scoped_refptr<net::X509Certificate> client_cert,
|
||||
scoped_refptr<net::SSLPrivateKey> client_private_key,
|
||||
const net::CompletionCallback& callback) override;
|
||||
int RestartWithAuth(const net::AuthCredentials& credentials,
|
||||
const net::CompletionCallback& callback) override;
|
||||
bool IsReadyToRestartForAuth() override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue