publishDevicesUpdated()

in web-ui/src/components/chime/ChimeSdkWrapper.js [446:457]


  publishDevicesUpdated() {
    this.devicesUpdatedCallbacks.forEach((callback) => {
      callback({
        currentAudioInputDevice: this.currentAudioInputDevice,
        currentAudioOutputDevice: this.currentAudioOutputDevice,
        currentVideoInputDevice: this.currentVideoInputDevice,
        audioInputDevices: this.audioInputDevices,
        audioOutputDevices: this.audioOutputDevices,
        videoInputDevices: this.videoInputDevices,
      });
    });
  }