| Index: content/child/webcrypto/platform_crypto.h
|
| diff --git a/content/child/webcrypto/platform_crypto.h b/content/child/webcrypto/platform_crypto.h
|
| index 00b9e050a82f835b9c64c22f6c0832ba604f5a72..3c03b53bd2023c6a0b5b48136e41d07fa25c3c51 100644
|
| --- a/content/child/webcrypto/platform_crypto.h
|
| +++ b/content/child/webcrypto/platform_crypto.h
|
| @@ -5,11 +5,10 @@
|
| #ifndef CONTENT_CHILD_WEBCRYPTO_PLATFORM_CRYPTO_H_
|
| #define CONTENT_CHILD_WEBCRYPTO_PLATFORM_CRYPTO_H_
|
|
|
| +#include <stdint.h>
|
| #include <vector>
|
|
|
| -#include "base/basictypes.h"
|
| #include "base/memory/scoped_ptr.h"
|
| -#include "content/common/content_export.h"
|
| #include "third_party/WebKit/public/platform/WebCrypto.h"
|
|
|
| // The definitions for these methods lives in either nss/ or openssl/
|
| @@ -33,7 +32,7 @@ AlgorithmImplementation* CreatePlatformRsaOaepImplementation();
|
| AlgorithmImplementation* CreatePlatformRsaSsaImplementation();
|
|
|
| bool PlatformSerializeKeyForClone(const blink::WebCryptoKey& key,
|
| - blink::WebVector<uint8>* key_data);
|
| + blink::WebVector<uint8_t>* key_data);
|
|
|
| } // namespace webcrypto
|
|
|
|
|