Bug 805871: Make PeerConnection constraints optional; r=jesup

This commit is contained in:
Anant Narayanan 2012-10-26 15:31:17 -07:00
Родитель 25e28ddb85
Коммит 3a00ca73a2
1 изменённых файлов: 8 добавлений и 0 удалений

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

@ -268,6 +268,10 @@ PeerConnection.prototype = {
throw new Error("createOffer already called");
}
if (!constraints) {
constraints = {};
}
if (!this._validateConstraints(constraints)) {
throw new Error("createOffer passed invalid constraints");
}
@ -295,6 +299,10 @@ PeerConnection.prototype = {
throw new Error("No outstanding offer");
}
if (!constraints) {
constraints = {};
}
if (!this._validateConstraints(constraints)) {
throw new Error("createAnswer passed invalid constraints");
}