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

Unified Diff: content/child/webcrypto/structured_clone.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
« no previous file with comments | « content/child/webcrypto/shared_crypto_unittest.cc ('k') | content/child/webcrypto/structured_clone.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/webcrypto/structured_clone.h
diff --git a/content/child/webcrypto/structured_clone.h b/content/child/webcrypto/structured_clone.h
index 19728f99c552d23a6012067954a479ce06786daf..a72974ce698e8589ab3e1b28eb202a2894e73f23 100644
--- a/content/child/webcrypto/structured_clone.h
+++ b/content/child/webcrypto/structured_clone.h
@@ -5,7 +5,8 @@
#ifndef CONTENT_CHILD_WEBCRYPTO_STRUCTURED_CLONE_H_
#define CONTENT_CHILD_WEBCRYPTO_STRUCTURED_CLONE_H_
-#include "base/basictypes.h"
+#include <stdint.h>
+
#include "third_party/WebKit/public/platform/WebCrypto.h"
namespace content {
@@ -16,7 +17,7 @@ class CryptoData;
// Called on the target Blink thread.
bool SerializeKeyForClone(const blink::WebCryptoKey& key,
- blink::WebVector<uint8>* key_data);
+ blink::WebVector<uint8_t>* key_data);
// Called on the target Blink thread.
bool DeserializeKeyForClone(const blink::WebCryptoKeyAlgorithm& algorithm,
« no previous file with comments | « content/child/webcrypto/shared_crypto_unittest.cc ('k') | content/child/webcrypto/structured_clone.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698