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

Unified Diff: webrtc/api/peerconnection.h

Issue 1671173002: Track pending ICE restarts independently for different media sections. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Extend ICE restart test to check that a second answer has new credentials. Created 4 years, 10 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/peerconnection.h
diff --git a/webrtc/api/peerconnection.h b/webrtc/api/peerconnection.h
index 7ad1940f77a89b68a5bdd57a27a405b13188281a..8687eb92883f71dd2f9c7b8dd29b4fa55b718780 100644
--- a/webrtc/api/peerconnection.h
+++ b/webrtc/api/peerconnection.h
@@ -30,12 +30,14 @@ class RemoteMediaStreamFactory;
// Populates |session_options| from |rtc_options|, and returns true if options
// are valid.
+// Assumes that |session_options|->transport_options map entries exist.
pthatcher1 2016/02/17 06:46:58 Assumes which entries exist?
Taylor Brandstetter 2016/02/17 21:43:50 The entries that the caller wants populated accord
bool ConvertRtcOptionsForOffer(
const PeerConnectionInterface::RTCOfferAnswerOptions& rtc_options,
cricket::MediaSessionOptions* session_options);
// Populates |session_options| from |constraints|, and returns true if all
// mandatory constraints are satisfied.
+// Assumes that |session_options|->transport_options map entries exist.
bool ParseConstraintsForAnswer(const MediaConstraintsInterface* constraints,
cricket::MediaSessionOptions* session_options);

Powered by Google App Engine
This is Rietveld 408576698