aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/Crypto.webidl
diff options
context:
space:
mode:
authorChristian Poveda <christianpoveda@protonmail.com>2018-03-22 12:12:16 -0500
committerChristian Poveda <christianpoveda@protonmail.com>2018-03-22 12:12:16 -0500
commit723e03ef010ec8ac36b989f7c889652ea7e527f0 (patch)
treeb431a571c68cd6989d4e5b9e9d77b23247677c47 /components/script/dom/webidls/Crypto.webidl
parent4e26212d5e661b21392f59bdbe5518d047fe0531 (diff)
downloadservo-723e03ef010ec8ac36b989f7c889652ea7e527f0.tar.gz
servo-723e03ef010ec8ac36b989f7c889652ea7e527f0.zip
getRandomValues uses ArrayBufferView now
Diffstat (limited to 'components/script/dom/webidls/Crypto.webidl')
-rw-r--r--components/script/dom/webidls/Crypto.webidl3
1 files changed, 1 insertions, 2 deletions
diff --git a/components/script/dom/webidls/Crypto.webidl b/components/script/dom/webidls/Crypto.webidl
index 94611750e8f..2d17fd4da55 100644
--- a/components/script/dom/webidls/Crypto.webidl
+++ b/components/script/dom/webidls/Crypto.webidl
@@ -18,7 +18,6 @@ WorkerGlobalScope implements GlobalCrypto;
[Exposed=(Window,Worker)]
interface Crypto {
//readonly attribute SubtleCrypto subtle;
- //ArrayBufferView getRandomValues(ArrayBufferView array);
[Throws]
- ArrayBufferView getRandomValues(object array);
+ ArrayBufferView getRandomValues(ArrayBufferView array);
};