2015-07-06 20:40:04 +03:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* Specification: http://w3c.github.io/webrtc-pc/#certificate-management
|
|
|
|
*/
|
|
|
|
|
2016-10-24 06:11:43 +03:00
|
|
|
dictionary RTCCertificateExpiration {
|
|
|
|
[EnforceRange]
|
|
|
|
DOMTimeStamp expires;
|
|
|
|
};
|
|
|
|
|
2015-07-06 20:40:04 +03:00
|
|
|
[Pref="media.peerconnection.enabled"]
|
|
|
|
interface RTCCertificate {
|
2015-10-21 20:08:40 +03:00
|
|
|
readonly attribute DOMTimeStamp expires;
|
2015-07-06 20:40:04 +03:00
|
|
|
};
|