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

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

Issue 179353002: [webcrypto] Add the KeyAlgorithm interface. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Inline the empty trace() Created 6 years, 10 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/RsaKeyAlgorithm.idl
diff --git a/Source/modules/quota/StorageInfo.idl b/Source/modules/crypto/RsaKeyAlgorithm.idl
similarity index 89%
copy from Source/modules/quota/StorageInfo.idl
copy to Source/modules/crypto/RsaKeyAlgorithm.idl
index feec250125d91f90a9c268b29972c24ba68e903c..7d24dc5e0077dad72797ff5a5d6015db2b0fd287 100644
--- a/Source/modules/quota/StorageInfo.idl
+++ b/Source/modules/crypto/RsaKeyAlgorithm.idl
@@ -30,9 +30,8 @@
[
WillBeGarbageCollected,
haraken 2014/02/25 09:15:46 Remove [WillBeGarbageCollected].
- NoInterfaceObject,
- RuntimeEnabled=QuotaPromise
-] interface StorageInfo {
- readonly attribute unsigned long long usage;
- readonly attribute unsigned long long quota;
+ NoInterfaceObject
+] interface RsaKeyAlgorithm : KeyAlgorithm {
+ readonly attribute unsigned long modulusLength;
+ readonly attribute Uint8Array publicExponent;
};

Powered by Google App Engine
This is Rietveld 408576698