Chromium Code Reviews| 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); |