Index: net/ssl/openssl_client_key_store.cc |
diff --git a/net/ssl/openssl_client_key_store.cc b/net/ssl/openssl_client_key_store.cc |
index 9ea044e3fde6671e391cf1ad9f6ddecda35b8584..2c0ce2484f76dd48accfbf7b3baa33a45bf9d514 100644 |
--- a/net/ssl/openssl_client_key_store.cc |
+++ b/net/ssl/openssl_client_key_store.cc |
@@ -49,8 +49,7 @@ OpenSSLClientKeyStore::OpenSSLClientKeyStore() { |
OpenSSLClientKeyStore::~OpenSSLClientKeyStore() { |
} |
-OpenSSLClientKeyStore::KeyPair::KeyPair(EVP_PKEY* pub_key, |
- EVP_PKEY* priv_key) { |
+OpenSSLClientKeyStore::KeyPair::KeyPair(EVP_PKEY* pub_key, EVP_PKEY* priv_key) { |
public_key = CopyEVP_PKEY(pub_key); |
private_key = CopyEVP_PKEY(priv_key); |
} |
@@ -136,5 +135,3 @@ OpenSSLClientKeyStore* OpenSSLClientKeyStore::GetInstance() { |
} |
} // namespace net |
- |
- |