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 0cecbcac3fad8d784679fe1b25017b00d0f6f707..3861873c959cc1218623f4a0535a342d57e7760a 100644 |
--- a/chrome/renderer/media/cast_udp_transport.cc |
+++ b/chrome/renderer/media/cast_udp_transport.cc |
@@ -17,12 +17,15 @@ CastUdpTransport::CastUdpTransport( |
CastUdpTransport::~CastUdpTransport() { |
} |
-void CastUdpTransport::SetDestination(const net::IPEndPoint& remote_address) { |
+void CastUdpTransport::SetDestination( |
+ const net::IPEndPoint& remote_address, |
+ const CastSessionDelegate::ErrorCallback& error_callback) { |
DVLOG(1) << "CastUdpTransport::SetDestination = " |
<< remote_address.ToString(); |
remote_address_ = remote_address; |
cast_session_->StartUDP(remote_address, |
- make_scoped_ptr(options_->DeepCopy())); |
+ make_scoped_ptr(options_->DeepCopy()), |
+ error_callback); |
} |
void CastUdpTransport::SetOptions(scoped_ptr<base::DictionaryValue> options) { |