Searched refs:offerToReceiveAudio (Results 1 - 5 of 5) sorted by relevance

/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/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/public/platform/
H A DWebRTCOfferOptions.h34 BLINK_PLATFORM_EXPORT int32_t offerToReceiveAudio() const;
/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);
/external/chromium_org/content/renderer/media/
H A Drtc_peer_connection_handler.cc426 options.offerToReceiveAudio() > 0 ? "true" : "false",

Completed in 126 milliseconds