| Index: chrome/renderer/media/cast_udp_transport.cc
|
| diff --git a/chrome/renderer/media/cast_udp_transport.cc b/chrome/renderer/media/cast_udp_transport.cc
|
| index d27c4e7bc0b5c84ed60f8b4b9deb334fa0eb0cd4..d2735534c863d124032163a667471c15d02379fb 100644
|
| --- a/chrome/renderer/media/cast_udp_transport.cc
|
| +++ b/chrome/renderer/media/cast_udp_transport.cc
|
| @@ -18,5 +18,9 @@ void CastUdpTransport::SetDestination(const net::IPEndPoint& remote_address) {
|
| VLOG(1) << "CastUdpTransport::SetDestination = "
|
| << remote_address.ToString();
|
| remote_address_ = remote_address;
|
| - cast_session_->StartUDP(remote_address);
|
| + cast_session_->StartUDP(remote_address, options_);
|
| +}
|
| +
|
| +void CastUdpTransport::SetOptions(const std::string& options) {
|
| + options_ = options;
|
| }
|
|
|