| Index: remoting/protocol/jingle_session.cc
|
| diff --git a/remoting/protocol/jingle_session.cc b/remoting/protocol/jingle_session.cc
|
| index a7d417e6687e182afdeaec63303e21e2c43466e4..ae449401540de8ef477968c6744fc7ccf0b655bc 100644
|
| --- a/remoting/protocol/jingle_session.cc
|
| +++ b/remoting/protocol/jingle_session.cc
|
| @@ -259,10 +259,8 @@ void JingleSession::OnTransportCandidate(Transport* transport,
|
|
|
| void JingleSession::OnTransportRouteChange(Transport* transport,
|
| const TransportRoute& route) {
|
| - if (!route_change_callback_.is_null()) {
|
| - route_change_callback_.Run(transport->name(), route.remote_address,
|
| - route.local_address);
|
| - }
|
| + if (!route_change_callback_.is_null())
|
| + route_change_callback_.Run(transport->name(), route);
|
| }
|
|
|
| void JingleSession::OnTransportDeleted(Transport* transport) {
|
|
|