Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(672)

Unified Diff: content/child/webcrypto/openssl/aes_key_openssl.h

Issue 404733005: Replace uses of uint8 with uint8_t. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase onto master Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/child/webcrypto/openssl/aes_key_openssl.h
diff --git a/content/child/webcrypto/openssl/aes_key_openssl.h b/content/child/webcrypto/openssl/aes_key_openssl.h
index d5a74ff8b8c7a0f9005e4ed8b688d30260b6d19a..6c6b5ff546b68b2e5366f088b723f5b5bf989917 100644
--- a/content/child/webcrypto/openssl/aes_key_openssl.h
+++ b/content/child/webcrypto/openssl/aes_key_openssl.h
@@ -53,10 +53,10 @@ class AesAlgorithm : public AlgorithmImplementation {
blink::WebCryptoKey* key) const OVERRIDE;
virtual Status ExportKeyRaw(const blink::WebCryptoKey& key,
- std::vector<uint8>* buffer) const OVERRIDE;
+ std::vector<uint8_t>* buffer) const OVERRIDE;
virtual Status ExportKeyJwk(const blink::WebCryptoKey& key,
- std::vector<uint8>* buffer) const OVERRIDE;
+ std::vector<uint8_t>* buffer) const OVERRIDE;
private:
const blink::WebCryptoKeyUsageMask all_key_usages_;
« no previous file with comments | « content/child/webcrypto/openssl/aes_gcm_openssl.cc ('k') | content/child/webcrypto/openssl/aes_key_openssl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698