Searched defs:offerToReceiveAudio (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebRTCOfferOptions.cpp33 int32_t WebRTCOfferOptions::offerToReceiveAudio() const function in class:blink::WebRTCOfferOptions
36 return m_private->offerToReceiveAudio();
/external/chromium_org/third_party/WebKit/Source/platform/mediastream/
H A DRTCOfferOptions.h14 static RTCOfferOptions* create(int32_t offerToReceiveVideo, int32_t offerToReceiveAudio, bool voiceActivityDetection, bool iceRestart) argument
16 return new RTCOfferOptions(offerToReceiveVideo, offerToReceiveAudio, voiceActivityDetection, iceRestart);
20 int32_t offerToReceiveAudio() const { return m_offerToReceiveAudio; } function in class:blink::FINAL
27 RTCOfferOptions(int32_t offerToReceiveVideo, int32_t offerToReceiveAudio, bool voiceActivityDetection, bool iceRestart) argument
29 , m_offerToReceiveAudio(offerToReceiveAudio)
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DRTCPeerConnection.cpp189 int32_t offerToReceiveAudio = -1; local
198 if (DictionaryHelper::get(options, "offerToReceiveAudio", offerToReceiveAudio) && offerToReceiveAudio < 0) {
199 exceptionState.throwTypeError("Invalid offerToReceiveAudio");
206 RTCOfferOptions* rtcOfferOptions = RTCOfferOptions::create(offerToReceiveVideo, offerToReceiveAudio, voiceActivityDetection, iceRestart);

Completed in 798 milliseconds