Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(315)

Unified Diff: webrtc/api/peerconnectioninterface.h

Issue 1844803002: Modify PeerConnection for end-to-end QuicDataChannel usage (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Remove webrtcsdp.cc from this CL Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 {

Powered by Google App Engine
This is Rietveld 408576698