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

Unified Diff: Source/modules/crypto/Key.idl

Issue 18801015: WebCrypto: Update the key usage names to reflect recent changes to the spec. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | « Source/modules/crypto/Key.cpp ('k') | public/platform/WebCryptoKey.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/crypto/Key.idl
diff --git a/Source/modules/crypto/Key.idl b/Source/modules/crypto/Key.idl
index f66338594f971250d4e672e49bcf4987b8eb258b..ef447f034d4714f17ca97877852332df2ca24752 100644
--- a/Source/modules/crypto/Key.idl
+++ b/Source/modules/crypto/Key.idl
@@ -39,9 +39,9 @@ enum KeyUsage {
"decrypt",
"sign",
"verify",
- "derive",
- "wrap",
- "unwrap"
+ "deriveKey",
+ "wrapKey",
+ "unwrapKey"
};
[
@@ -50,5 +50,5 @@ enum KeyUsage {
readonly attribute KeyType type;
readonly attribute boolean extractable;
readonly attribute Algorithm algorithm;
- readonly attribute KeyUsage[] keyUsage;
+ readonly attribute KeyUsage[] usages;
};
« no previous file with comments | « Source/modules/crypto/Key.cpp ('k') | public/platform/WebCryptoKey.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698