| Index: content/child/webcrypto/nss/aes_key_nss.h
|
| diff --git a/content/child/webcrypto/nss/aes_key_nss.h b/content/child/webcrypto/nss/aes_key_nss.h
|
| index 6d80dd3037d26703cc0de14e221748f2c4ecdd70..7f4c1b19cc74ead158e1039b888560459ae148ce 100644
|
| --- a/content/child/webcrypto/nss/aes_key_nss.h
|
| +++ b/content/child/webcrypto/nss/aes_key_nss.h
|
| @@ -38,23 +38,23 @@ class AesAlgorithm : public AlgorithmImplementation {
|
|
|
| virtual Status GenerateKey(const blink::WebCryptoAlgorithm& algorithm,
|
| bool extractable,
|
| - blink::WebCryptoKeyUsageMask usage_mask,
|
| + blink::WebCryptoKeyUsageMask usages,
|
| GenerateKeyResult* result) const override;
|
|
|
| virtual Status VerifyKeyUsagesBeforeImportKey(
|
| blink::WebCryptoKeyFormat format,
|
| - blink::WebCryptoKeyUsageMask usage_mask) const override;
|
| + blink::WebCryptoKeyUsageMask usages) const override;
|
|
|
| virtual Status ImportKeyRaw(const CryptoData& key_data,
|
| const blink::WebCryptoAlgorithm& algorithm,
|
| bool extractable,
|
| - blink::WebCryptoKeyUsageMask usage_mask,
|
| + blink::WebCryptoKeyUsageMask usages,
|
| blink::WebCryptoKey* key) const override;
|
|
|
| virtual Status ImportKeyJwk(const CryptoData& key_data,
|
| const blink::WebCryptoAlgorithm& algorithm,
|
| bool extractable,
|
| - blink::WebCryptoKeyUsageMask usage_mask,
|
| + blink::WebCryptoKeyUsageMask usages,
|
| blink::WebCryptoKey* key) const override;
|
|
|
| virtual Status ExportKeyRaw(const blink::WebCryptoKey& key,
|
|
|