Searched refs:offerToReceiveVideo (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);
19 int32_t offerToReceiveVideo() const { return m_offerToReceiveVideo; } function in class:blink::FINAL
27 RTCOfferOptions(int32_t offerToReceiveVideo, int32_t offerToReceiveAudio, bool voiceActivityDetection, bool iceRestart) argument
28 : m_offerToReceiveVideo(offerToReceiveVideo)
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebRTCOfferOptions.cpp27 int32_t WebRTCOfferOptions::offerToReceiveVideo() const function in class:blink::WebRTCOfferOptions
30 return m_private->offerToReceiveVideo();
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebRTCOfferOptions.h33 BLINK_PLATFORM_EXPORT int32_t offerToReceiveVideo() const;
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DRTCPeerConnection.cpp188 int32_t offerToReceiveVideo = -1;
193 if (DictionaryHelper::get(options, "offerToReceiveVideo", offerToReceiveVideo) && offerToReceiveVideo < 0) {
194 exceptionState.throwTypeError("Invalid offerToReceiveVideo");
206 RTCOfferOptions* rtcOfferOptions = RTCOfferOptions::create(offerToReceiveVideo, offerToReceiveAudio, voiceActivityDetection, iceRestart);
/external/chromium_org/content/renderer/media/
H A Drtc_peer_connection_handler.cc431 options.offerToReceiveVideo() > 0 ? "true" : "false",

Completed in 1047 milliseconds