Index: content/child/webcrypto/algorithm_dispatch.h |
diff --git a/content/child/webcrypto/algorithm_dispatch.h b/content/child/webcrypto/algorithm_dispatch.h |
index a8b282c70b02ff9ff66a9a07cca22c856376b3f2..a3a6fa69f1f9893b44b19f9b3b0bf05e00a5a742 100644 |
--- a/content/child/webcrypto/algorithm_dispatch.h |
+++ b/content/child/webcrypto/algorithm_dispatch.h |
@@ -31,16 +31,16 @@ class Status; |
CONTENT_EXPORT Status Encrypt(const blink::WebCryptoAlgorithm& algorithm, |
const blink::WebCryptoKey& key, |
const CryptoData& data, |
- std::vector<uint8>* buffer); |
+ std::vector<uint8_t>* buffer); |
CONTENT_EXPORT Status Decrypt(const blink::WebCryptoAlgorithm& algorithm, |
const blink::WebCryptoKey& key, |
const CryptoData& data, |
- std::vector<uint8>* buffer); |
+ std::vector<uint8_t>* buffer); |
CONTENT_EXPORT Status Digest(const blink::WebCryptoAlgorithm& algorithm, |
const CryptoData& data, |
- std::vector<uint8>* buffer); |
+ std::vector<uint8_t>* buffer); |
CONTENT_EXPORT Status |
GenerateSecretKey(const blink::WebCryptoAlgorithm& algorithm, |
@@ -64,12 +64,12 @@ CONTENT_EXPORT Status ImportKey(blink::WebCryptoKeyFormat format, |
CONTENT_EXPORT Status ExportKey(blink::WebCryptoKeyFormat format, |
const blink::WebCryptoKey& key, |
- std::vector<uint8>* buffer); |
+ std::vector<uint8_t>* buffer); |
CONTENT_EXPORT Status Sign(const blink::WebCryptoAlgorithm& algorithm, |
const blink::WebCryptoKey& key, |
const CryptoData& data, |
- std::vector<uint8>* buffer); |
+ std::vector<uint8_t>* buffer); |
CONTENT_EXPORT Status Verify(const blink::WebCryptoAlgorithm& algorithm, |
const blink::WebCryptoKey& key, |
@@ -82,7 +82,7 @@ CONTENT_EXPORT Status |
const blink::WebCryptoKey& key_to_wrap, |
const blink::WebCryptoKey& wrapping_key, |
const blink::WebCryptoAlgorithm& wrapping_algorithm, |
- std::vector<uint8>* buffer); |
+ std::vector<uint8_t>* buffer); |
CONTENT_EXPORT Status |
UnwrapKey(blink::WebCryptoKeyFormat format, |