Skip to content

Commit

Permalink
Migrate from WebIDL void to undefined
Browse files Browse the repository at this point in the history
Also use new respec profile and simplify configuration
  • Loading branch information
dontcallmedom committed Aug 26, 2020
1 parent 5ad337a commit 3aadace
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 13 deletions.
10 changes: 5 additions & 5 deletions index.html
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8">
<link href="webrtc.css" rel="stylesheet">
<title>IceTransport Extensions for WebRTC</title>
<script class="remove" src="https://www.w3.org/Tools/respec/respec-w3c-common" type="text/javascript"></script>
<script class="remove" src="https://www.w3.org/Tools/respec/respec-w3c"></script>
<script src="respec-config.js" class="remove"></script>
</head>
<body>
Expand Down Expand Up @@ -163,10 +163,10 @@ <h3>Interface Definition</h3>
[Exposed=Window]
partial interface RTCIceTransport {
constructor();
void gather (optional RTCIceGatherOptions options = {});
void start (RTCIceParameters remoteParameters, optional RTCIceRole role = "controlled");
void stop ();
void addRemoteCandidate (RTCIceCandidateInit remoteCandidate);
undefined gather (optional RTCIceGatherOptions options = {});
undefined start (RTCIceParameters remoteParameters, optional RTCIceRole role = "controlled");
undefined stop ();
undefined addRemoteCandidate (RTCIceCandidateInit remoteCandidate);
attribute EventHandler onerror;
attribute EventHandler onicecandidate;
};</pre>
Expand Down
10 changes: 2 additions & 8 deletions respec-config.js
Expand Up @@ -9,11 +9,9 @@ var respecConfig = {
],
authors: [
],
wg: "Web Real-Time Communications Working Group",
wgURI: "https://www.w3.org/2011/04/webrtc/",
group: "webrtc",
wgPublicList: "public-webrtc",
wgPatentURI: "https://www.w3.org/2004/01/pp-impl/47318/status",
issueBase: "https://github.com/w3c/webrtc-ice/issues",
github: "https://github.com/w3c/webrtc-ice",
otherLinks: [
{
key: "Participate",
Expand All @@ -22,10 +20,6 @@ var respecConfig = {
value: "Mailing list",
href: "https://lists.w3.org/Archives/Public/public-webrtc/"
},
{
value: "Browse open issues",
href: "https://github.com/w3c/webrtc-ice/issues"
},
{
value: "IETF ICE Working Group",
href: "https://tools.ietf.org/wg/ice/"
Expand Down

0 comments on commit 3aadace

Please sign in to comment.