Index: net/socket/ssl_client_socket_openssl.cc |
diff --git a/net/socket/ssl_client_socket_openssl.cc b/net/socket/ssl_client_socket_openssl.cc |
index 8bdc3148d11e83b8b2a28ee5ceebca57d6bce9f5..87331ff68d0c749589213160a0475c558fe8021f 100644 |
--- a/net/socket/ssl_client_socket_openssl.cc |
+++ b/net/socket/ssl_client_socket_openssl.cc |
@@ -1354,7 +1354,7 @@ int SSLClientSocketOpenSSL::ClientCertRequestCallback(SSL* ssl, |
// the reference count of the EVP_PKEY. Ownership of this reference |
// is passed directly to OpenSSL, which will release the reference |
// using EVP_PKEY_free() when the SSL object is destroyed. |
- OpenSSLClientKeyStore::ScopedEVP_PKEY privkey; |
+ crypto::ScopedEVP_PKEY privkey; |
if (OpenSSLClientKeyStore::GetInstance()->FetchClientCertPrivateKey( |
ssl_config_.client_cert.get(), &privkey)) { |
// TODO(joth): (copied from NSS) We should wait for server certificate |