Skip to content

Commit

Permalink
Merge pull request #1557 from soareschen/issue-1476-patch
Browse files Browse the repository at this point in the history
Make fields in RTCStats required
  • Loading branch information
aboba committed Aug 24, 2017
2 parents 8ff23d9 + 2b885bb commit ffed6a1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions webrtc.html
Expand Up @@ -8924,9 +8924,9 @@ <h3><dfn>RTCStats</dfn> Dictionary</h3>
<code><a>RTCStats</a></code>-derived dictionary.</p>
<div>
<pre class="idl">dictionary RTCStats {
DOMHighResTimeStamp timestamp;
RTCStatsType type;
DOMString id;
required DOMHighResTimeStamp timestamp;
required RTCStatsType type;
required DOMString id;
};</pre>
<section>
<h2>Dictionary <a class="idlType">RTCStats</a> Members</h2>
Expand Down

0 comments on commit ffed6a1

Please sign in to comment.