Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions ed/idlpatches/webrtc-encoded-transform.idl.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
From f92496af49b2aaca2a79d150ee6fa4f583ab32a1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Philip=20J=C3=A4genstedt?= <philip@foolip.org>
Date: Tue, 23 Mar 2021 09:33:49 +0100
Subject: [PATCH] Fix webrtc-encoded-transform.idl

https://github.com/w3c/webrtc-encoded-transform/pull/92
---
ed/idl/webrtc-encoded-transform.idl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ed/idl/webrtc-encoded-transform.idl b/ed/idl/webrtc-encoded-transform.idl
index 0c491f416..f66cad58f 100644
--- a/ed/idl/webrtc-encoded-transform.idl
+++ b/ed/idl/webrtc-encoded-transform.idl
@@ -37,7 +37,7 @@ dictionary SFrameTransformOptions {
};

typedef [EnforceRange] unsigned long long SmallCryptoKeyID;
-typedef (SmallCryptoKeyID or BigInt) CryptoKeyID;
+typedef (SmallCryptoKeyID or bigint) CryptoKeyID;

[Exposed=(Window,DedicatedWorker)]
interface SFrameTransform {
--
2.31.0.rc2.261.g7f71774620-goog

1 change: 1 addition & 0 deletions test/idl/consistency.js
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ describe('Web IDL consistency', () => {
// Types defined by Web IDL itself:
'any', // https://heycam.github.io/webidl/#idl-any
'ArrayBuffer', // https://heycam.github.io/webidl/#idl-ArrayBuffer
'bigint', // https://heycam.github.io/webidl/#idl-bigint
'boolean', // https://heycam.github.io/webidl/#idl-boolean
'byte', // https://heycam.github.io/webidl/#idl-byte
'ByteString', // https://heycam.github.io/webidl/#idl-ByteString
Expand Down