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 764ce9ee71b91219c684c82319507783bf41c6f5..f166b69fae7c16e1fc5b3821ba5d09b0a3056a00 100644 |
--- a/net/socket/ssl_client_socket_openssl.cc |
+++ b/net/socket/ssl_client_socket_openssl.cc |
@@ -78,8 +78,7 @@ void FreeX509Stack(STACK_OF(X509)* ptr) { |
sk_X509_pop_free(ptr, X509_free); |
} |
-typedef crypto::ScopedOpenSSL<STACK_OF(X509), FreeX509Stack>::Type |
- ScopedX509Stack; |
+using ScopedX509Stack = crypto::ScopedOpenSSL<STACK_OF(X509), FreeX509Stack>; |
#if OPENSSL_VERSION_NUMBER < 0x1000103fL |
// This method doesn't seem to have made it into the OpenSSL headers. |