Backed out changeset fddde2d1e9b2 (bug 853858) for Windows leaks.

This commit is contained in:
Ryan VanderMeulen 2013-04-05 09:03:22 -04:00
Родитель 87d504af18
Коммит 0c343a580c
6 изменённых файлов: 6 добавлений и 12 удалений

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

@ -15,9 +15,8 @@
title: "Basic audio-only peer connection"
});
var test;
runTest(function () {
test = new PeerConnectionTest();
var test = new PeerConnectionTest();
test.setMediaConstraints([{audio: true}], [{audio: true}]);
test.run();
}, true);

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

@ -16,9 +16,8 @@
title: "Basic audio/video (separate) peer connection"
});
var test;
runTest(function () {
test = new PeerConnectionTest();
var test = new PeerConnectionTest();
test.setMediaConstraints([{audio: true}, {video: true}],
[{audio: true}, {video: true}]);
test.run();

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

@ -16,9 +16,8 @@
title: "Basic audio/video (combined) peer connection"
});
var test;
runTest(function () {
test = new PeerConnectionTest();
var test = new PeerConnectionTest();
test.setMediaConstraints([{audio: true}, {video: true}],
[{audio: true}, {video: true}]);
test.run();

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

@ -15,9 +15,8 @@
title: "Basic video-only peer connection"
});
var test;
runTest(function () {
test = new PeerConnectionTest();
var test = new PeerConnectionTest();
test.setMediaConstraints([{video: true}], [{video: true}]);
test.run();
}, true);

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

@ -79,9 +79,8 @@
]
];
var test;
runTest(function () {
test = new PeerConnectionTest();
var test = new PeerConnectionTest();
test.setMediaConstraints([{audio: true}], [{audio: true}]);
test.chain.append(steps);
test.run();

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

@ -106,9 +106,8 @@
]
];
var test;
runTest(function () {
test = new PeerConnectionTest();
var test = new PeerConnectionTest();
test.setMediaConstraints([{audio: true, video: true}], [ ]);
test.chain.replaceAfter("PC_LOCAL_GUM", steps);
test.run();