Home | History | Annotate | Download | only in test

Lines Matching refs:pc2

34   function onPeerConnectionCreated(pc1, pc2) {
37 pc2.addEventListener('addstream', onAddStream);
38 pc1.addEventListener('icecandidate', onIceCandidate.bind(pc2));
39 pc2.addEventListener('icecandidate', onIceCandidate.bind(pc1));
48 createOfferAndAnswer(pc1, pc2);
69 function createOfferAndAnswer(pc1, pc2) {
76 pc2.setRemoteDescription(offer, onSetSessionDescriptionSuccess,
79 pc2.createAnswer(gotAnswer, test.fail);
84 pc2.setLocalDescription(answer, onSetSessionDescriptionSuccess,
102 report.collectStatsFromPeerConnection("bot2", pc2);