Index: talk/app/webrtc/peerconnectioninterface.h |
diff --git a/talk/app/webrtc/peerconnectioninterface.h b/talk/app/webrtc/peerconnectioninterface.h |
index b7814e583033ac4f741c8d1b245ed14e5c12c143..63cc847b052fc442c3466ae36c8a99a78f114b71 100644 |
--- a/talk/app/webrtc/peerconnectioninterface.h |
+++ b/talk/app/webrtc/peerconnectioninterface.h |
@@ -256,7 +256,7 @@ class PeerConnectionInterface : public rtc::RefCountInterface { |
int ice_connection_receiving_timeout; |
ContinualGatheringPolicy continual_gathering_policy; |
std::vector<rtc::scoped_refptr<rtc::RTCCertificate>> certificates; |
- |
+ bool renderer_can_schedule_frames; |
RTCConfiguration() |
: type(kAll), |
bundle_policy(kBundlePolicyBalanced), |
@@ -265,7 +265,8 @@ class PeerConnectionInterface : public rtc::RefCountInterface { |
audio_jitter_buffer_max_packets(kAudioJitterBufferMaxPackets), |
audio_jitter_buffer_fast_accelerate(false), |
ice_connection_receiving_timeout(kUndefined), |
- continual_gathering_policy(GATHER_ONCE) {} |
+ continual_gathering_policy(GATHER_ONCE), |
+ renderer_can_schedule_frames(false) {} |
}; |
struct RTCOfferAnswerOptions { |