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

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

Issue 340353006: [webcrypto] Replace KeyAlgorithm interfaces with an Object. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase onto master Created 6 years, 6 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
Index: Source/modules/crypto/CryptoKey.idl
diff --git a/Source/modules/crypto/CryptoKey.idl b/Source/modules/crypto/CryptoKey.idl
index 731a6e649b839d2e5bc7881a04e99c416561a5f6..0ad4ab6149c5d6092514d370ebc7306b7ad9b7c7 100644
--- a/Source/modules/crypto/CryptoKey.idl
+++ b/Source/modules/crypto/CryptoKey.idl
@@ -34,6 +34,6 @@
] interface CryptoKey {
readonly attribute DOMString type;
readonly attribute boolean extractable;
- readonly attribute KeyAlgorithm algorithm;
+ [Custom] readonly attribute object algorithm;
readonly attribute DOMString[] usages;
};

Powered by Google App Engine
This is Rietveld 408576698