| Index: webrtc/api/peerconnectioninterface.h
|
| diff --git a/webrtc/api/peerconnectioninterface.h b/webrtc/api/peerconnectioninterface.h
|
| index 9259275b86a99071131fc5beeb9b422c71920269..2946bca910b4be8db6c6aa3f9fdd13107187a344 100644
|
| --- a/webrtc/api/peerconnectioninterface.h
|
| +++ b/webrtc/api/peerconnectioninterface.h
|
| @@ -279,6 +279,7 @@ class PeerConnectionInterface : public rtc::RefCountInterface {
|
| bool disable_ipv6;
|
| rtc::Optional<bool> enable_dscp;
|
| bool enable_rtp_data_channel;
|
| + bool enable_quic;
|
| rtc::Optional<bool> cpu_overuse_detection;
|
| rtc::Optional<bool> suspend_below_min_bitrate;
|
| rtc::Optional<int> screencast_min_bitrate;
|
| @@ -297,7 +298,8 @@ class PeerConnectionInterface : public rtc::RefCountInterface {
|
| disable_prerenderer_smoothing(false),
|
| prioritize_most_likely_ice_candidate_pairs(false),
|
| disable_ipv6(false),
|
| - enable_rtp_data_channel(false) {}
|
| + enable_rtp_data_channel(false),
|
| + enable_quic(false) {}
|
| };
|
|
|
| struct RTCOfferAnswerOptions {
|
|
|