Searched refs:createDataChannel (Results 1 – 1 of 1) sorted by relevance
/device/google/cuttlefish/host/frontend/webrtc/html_client/js/ |
D | cf_webrtc.js | 17 function createDataChannel(pc, label, onMessage) { function 19 let dataChannel = pc.createDataChannel(label); 125 this.#cameraDataChannel = pc.createDataChannel('camera-data-channel'); 134 this.#inputChannel = createDataChannel(pc, 'input-channel'); 135 this.#sensorsChannel = createDataChannel(pc, 'sensors-channel', (msg) => { 142 this.#adbChannel = createDataChannel(pc, 'adb-channel', (msg) => { 157 createDataChannel(pc, 'bluetooth-channel', (msg) => { 165 createDataChannel(pc, 'location-channel', (msg) => { 174 createDataChannel(pc, 'kml-locations-channel', (msg) => { 183 createDataChannel(pc, 'gpx-locations-channel', (msg) => { [all …]
|