Bug 1152538 - RTCIdentityAssertion is a dictionary, r=smaug

--HG--
extra : rebase_source : cae044d5041413658b32fa008c512aceac0fee43
This commit is contained in:
Martin Thomson 2015-04-16 09:55:18 -07:00
Родитель d15620fcea
Коммит d77e198e71
1 изменённых файлов: 4 добавлений и 7 удалений

Просмотреть файл

@ -4,13 +4,10 @@
* You can obtain one at http://mozilla.org/MPL/2.0/.
*
* The origin of this IDL file is
* http://www.w3.org/TR/2013/WD-webrtc-20130910/#idl-def-RTCIdentityAssertion
* http://w3c.github.io/webrtc-pc/#idl-def-RTCIdentityAssertion
*/
[Pref="media.peerconnection.identity.enabled",
JSImplementation="@mozilla.org/dom/rtcidentityassertion;1",
Constructor(DOMString idp, DOMString name)]
interface RTCIdentityAssertion {
attribute DOMString idp;
attribute DOMString name;
dictionary RTCIdentityAssertion {
DOMString idp;
DOMString name;
};