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

Unified Diff: content/child/webcrypto/nss/key_nss.cc

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/key_nss.cc
diff --git a/content/child/webcrypto/nss/key_nss.cc b/content/child/webcrypto/nss/key_nss.cc
index 0e6114da7c61876b257b23f557f7375e50c6717a..9193963fb59b4627bb11c66e6420efc56ae53d78 100644
--- a/content/child/webcrypto/nss/key_nss.cc
+++ b/content/child/webcrypto/nss/key_nss.cc
@@ -85,7 +85,7 @@ PrivateKeyNss::PrivateKeyNss(crypto::ScopedSECKEYPrivateKey key,
}
bool PlatformSerializeKeyForClone(const blink::WebCryptoKey& key,
- blink::WebVector<uint8>* key_data) {
+ blink::WebVector<uint8_t>* key_data) {
const KeyNss* nss_key = static_cast<KeyNss*>(key.handle());
*key_data = nss_key->serialized_key_data();
return true;

Powered by Google App Engine
This is Rietveld 408576698