| Index: webrtc/api/peerconnectioninterface.h
 | 
| diff --git a/webrtc/api/peerconnectioninterface.h b/webrtc/api/peerconnectioninterface.h
 | 
| index 94d2c001e38c228d7130319d03e4e8a5c13be34e..523310673f28e5c345f270598a7fa15dbf927579 100644
 | 
| --- a/webrtc/api/peerconnectioninterface.h
 | 
| +++ b/webrtc/api/peerconnectioninterface.h
 | 
| @@ -290,6 +290,7 @@ class PeerConnectionInterface : public rtc::RefCountInterface {
 | 
|      // default applies.
 | 
|      bool disable_ipv6;
 | 
|      bool enable_rtp_data_channel;
 | 
| +    bool enable_quic;
 | 
|      rtc::Optional<int> screencast_min_bitrate;
 | 
|      rtc::Optional<bool> combined_audio_video_bwe;
 | 
|      rtc::Optional<bool> enable_dtls_srtp;
 | 
| @@ -305,7 +306,8 @@ class PeerConnectionInterface : public rtc::RefCountInterface {
 | 
|            continual_gathering_policy(GATHER_ONCE),
 | 
|            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 {
 | 
| 
 |