mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-03 02:41:06 +00:00
fix
This commit is contained in:
parent
9178231b60
commit
bf273a2035
@ -2,15 +2,19 @@ use wasm_bindgen::{prelude::*, JsCast};
|
|||||||
use wasm_bindgen_futures::JsFuture;
|
use wasm_bindgen_futures::JsFuture;
|
||||||
use wasm_bindgen_test::*;
|
use wasm_bindgen_test::*;
|
||||||
|
|
||||||
use futures::Future;
|
use futures::{
|
||||||
|
future::{ok, IntoFuture},
|
||||||
|
Future,
|
||||||
|
};
|
||||||
|
|
||||||
use web_sys::{
|
use web_sys::{
|
||||||
RtcPeerConnection, RtcRtpTransceiver, RtcRtpTransceiverDirection, RtcRtpTransceiverInit,
|
RtcPeerConnection, RtcRtpTransceiver, RtcRtpTransceiverDirection, RtcRtpTransceiverInit,
|
||||||
RtcSessionDescriptionInit,
|
RtcSessionDescriptionInit,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#[wasm_bindgen(
|
||||||
#[wasm_bindgen(inline_js = "export function is_unified_avail() { return Object.keys(RTCRtpTransceiver.prototype).indexOf('currentDirection')>-1; }")]
|
inline_js = "export function is_unified_avail() { return Object.keys(RTCRtpTransceiver.prototype).indexOf('currentDirection')>-1; }"
|
||||||
|
)]
|
||||||
extern "C" {
|
extern "C" {
|
||||||
/// Available in FF since forever, in Chrome since 72, in Safari since 12.1
|
/// Available in FF since forever, in Chrome since 72, in Safari since 12.1
|
||||||
fn is_unified_avail() -> bool;
|
fn is_unified_avail() -> bool;
|
||||||
@ -18,9 +22,8 @@ extern "C" {
|
|||||||
|
|
||||||
#[wasm_bindgen_test(async)]
|
#[wasm_bindgen_test(async)]
|
||||||
fn rtc_rtp_transceiver_direction() -> impl Future<Item = (), Error = JsValue> {
|
fn rtc_rtp_transceiver_direction() -> impl Future<Item = (), Error = JsValue> {
|
||||||
|
|
||||||
if !is_unified_avail() {
|
if !is_unified_avail() {
|
||||||
Ok(())
|
ok::<(), JsValue>(());
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut tr_init: RtcRtpTransceiverInit = RtcRtpTransceiverInit::new();
|
let mut tr_init: RtcRtpTransceiverInit = RtcRtpTransceiverInit::new();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user