| 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_;
|
|
|