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

Unified Diff: third_party/WebKit/public/platform/WebRTCConfiguration.h

Issue 2447033002: Support RTCConfiguration iceTransportPolicy (Closed)
Patch Set: update expectations Created 4 years, 2 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: third_party/WebKit/public/platform/WebRTCConfiguration.h
diff --git a/third_party/WebKit/public/platform/WebRTCConfiguration.h b/third_party/WebKit/public/platform/WebRTCConfiguration.h
index 805404893402f6e67c3c27b3a09e6598e5cad000..de7c3d7a16e88f22c6f9533fcdb01f7bc064a93d 100644
--- a/third_party/WebKit/public/platform/WebRTCConfiguration.h
+++ b/third_party/WebKit/public/platform/WebRTCConfiguration.h
@@ -48,7 +48,7 @@ struct WebRTCIceServer {
WebString credential;
};
-enum class WebRTCIceTransports { kNone, kRelay, kAll };
+enum class WebRTCIceTransportPolicy { kNone, kRelay, kAll };
enum class WebRTCBundlePolicy { kBalanced, kMaxCompat, kMaxBundle };
@@ -56,7 +56,7 @@ enum class WebRTCRtcpMuxPolicy { kNegotiate, kRequire };
struct WebRTCConfiguration {
WebVector<WebRTCIceServer> iceServers;
- WebRTCIceTransports iceTransports = WebRTCIceTransports::kAll;
+ WebRTCIceTransportPolicy iceTransportPolicy = WebRTCIceTransportPolicy::kAll;
WebRTCBundlePolicy bundlePolicy = WebRTCBundlePolicy::kBalanced;
WebRTCRtcpMuxPolicy rtcpMuxPolicy = WebRTCRtcpMuxPolicy::kNegotiate;
WebVector<std::unique_ptr<WebRTCCertificate>> certificates;
« no previous file with comments | « third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.cpp ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698