| Index: public/platform/WebCryptoKey.h
|
| diff --git a/public/platform/WebCryptoKey.h b/public/platform/WebCryptoKey.h
|
| index 3cc76af8f4dc0f1b71a9994e6541370ac632c28d..94f437c801ed57c884ef612567a71b33a94740cb 100644
|
| --- a/public/platform/WebCryptoKey.h
|
| +++ b/public/platform/WebCryptoKey.h
|
| @@ -47,9 +47,9 @@ enum WebCryptoKeyUsage {
|
| WebCryptoKeyUsageDecrypt = 1 << 1,
|
| WebCryptoKeyUsageSign = 1 << 2,
|
| WebCryptoKeyUsageVerify = 1 << 3,
|
| - WebCryptoKeyUsageDerive = 1 << 4,
|
| - WebCryptoKeyUsageWrap = 1 << 5,
|
| - WebCryptoKeyUsageUnwrap = 1 << 6,
|
| + WebCryptoKeyUsageDeriveKey = 1 << 4,
|
| + WebCryptoKeyUsageWrapKey = 1 << 5,
|
| + WebCryptoKeyUsageUnwrapKey = 1 << 6,
|
| #if WEBKIT_IMPLEMENTATION
|
| EndOfWebCryptoKeyUsage,
|
| #endif
|
| @@ -106,7 +106,7 @@ public:
|
| WEBKIT_EXPORT WebCryptoKeyType type() const;
|
| WEBKIT_EXPORT bool extractable() const;
|
| WEBKIT_EXPORT const WebCryptoAlgorithm& algorithm() const;
|
| - WEBKIT_EXPORT WebCryptoKeyUsageMask keyUsage() const;
|
| + WEBKIT_EXPORT WebCryptoKeyUsageMask usages() const;
|
|
|
| private:
|
| WebCryptoKey() { }
|
|
|