Index: content/child/webcrypto/openssl/aes_kw_openssl.cc |
diff --git a/content/child/webcrypto/openssl/aes_kw_openssl.cc b/content/child/webcrypto/openssl/aes_kw_openssl.cc |
index d2bb10fc88b8c7468fb37069d13e43db495a23f0..9b8eed182bc99f8b353912c8957302d59a236360 100644 |
--- a/content/child/webcrypto/openssl/aes_kw_openssl.cc |
+++ b/content/child/webcrypto/openssl/aes_kw_openssl.cc |
@@ -19,7 +19,7 @@ class AesKwImplementation : public AesAlgorithm { |
virtual Status Encrypt(const blink::WebCryptoAlgorithm& algorithm, |
const blink::WebCryptoKey& key, |
const CryptoData& data, |
- std::vector<uint8>* buffer) const OVERRIDE { |
+ std::vector<uint8_t>* buffer) const OVERRIDE { |
// TODO(eroman): |
return Status::ErrorUnsupported(); |
} |
@@ -27,7 +27,7 @@ class AesKwImplementation : public AesAlgorithm { |
virtual Status Decrypt(const blink::WebCryptoAlgorithm& algorithm, |
const blink::WebCryptoKey& key, |
const CryptoData& data, |
- std::vector<uint8>* buffer) const OVERRIDE { |
+ std::vector<uint8_t>* buffer) const OVERRIDE { |
// TODO(eroman): |
return Status::ErrorUnsupported(); |
} |