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

Unified Diff: content/child/webcrypto/nss/rsa_key_nss.h

Issue 404733005: Replace uses of uint8 with uint8_t. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/nss/rsa_key_nss.h
diff --git a/content/child/webcrypto/nss/rsa_key_nss.h b/content/child/webcrypto/nss/rsa_key_nss.h
index 06466aaa11ee2b1939ad430091b876a290ecd549..b929192a5bb0142252c107fc11771cff5ac76205 100644
--- a/content/child/webcrypto/nss/rsa_key_nss.h
+++ b/content/child/webcrypto/nss/rsa_key_nss.h
@@ -73,10 +73,10 @@ class RsaHashedAlgorithm : public AlgorithmImplementation {
blink::WebCryptoKey* key) const OVERRIDE;
virtual Status ExportKeyPkcs8(const blink::WebCryptoKey& key,
- std::vector<uint8>* buffer) const OVERRIDE;
+ std::vector<uint8_t>* buffer) const OVERRIDE;
virtual Status ExportKeySpki(const blink::WebCryptoKey& key,
- std::vector<uint8>* buffer) const OVERRIDE;
+ std::vector<uint8_t>* buffer) const OVERRIDE;
virtual Status ImportKeyJwk(const CryptoData& key_data,
const blink::WebCryptoAlgorithm& algorithm,
@@ -85,7 +85,7 @@ class RsaHashedAlgorithm : public AlgorithmImplementation {
blink::WebCryptoKey* key) const OVERRIDE;
virtual Status ExportKeyJwk(const blink::WebCryptoKey& key,
- std::vector<uint8>* buffer) const OVERRIDE;
+ std::vector<uint8_t>* buffer) const OVERRIDE;
private:
CK_FLAGS generate_flags_;

Powered by Google App Engine
This is Rietveld 408576698