Index: content/child/webcrypto/openssl/aes_cbc_openssl.cc |
diff --git a/content/child/webcrypto/openssl/aes_cbc_openssl.cc b/content/child/webcrypto/openssl/aes_cbc_openssl.cc |
index e2a95850903bde83be1234601dd137f235007911..56459356ee431d854d8700e4a75cdd13760e5245 100644 |
--- a/content/child/webcrypto/openssl/aes_cbc_openssl.cc |
+++ b/content/child/webcrypto/openssl/aes_cbc_openssl.cc |
@@ -65,7 +65,7 @@ Status AesCbcEncryptDecrypt(EncryptOrDecrypt cipher_operation, |
return Status::ErrorDataTooLarge(); |
// Note: PKCS padding is enabled by default |
- crypto::ScopedOpenSSL<EVP_CIPHER_CTX, EVP_CIPHER_CTX_free>::Type context( |
+ crypto::ScopedOpenSSL<EVP_CIPHER_CTX, EVP_CIPHER_CTX_free> context( |
EVP_CIPHER_CTX_new()); |
if (!context.get()) |