| Index: remoting/host/client_session.cc
|
| diff --git a/remoting/host/client_session.cc b/remoting/host/client_session.cc
|
| index 81abc712c32ecba7ecc79b27b8e6c013bdb13f50..5439b074da08c1050bf39b4f66a423643020c3bf 100644
|
| --- a/remoting/host/client_session.cc
|
| +++ b/remoting/host/client_session.cc
|
| @@ -138,12 +138,10 @@ void ClientSession::OnSequenceNumberUpdated(
|
| void ClientSession::OnRouteChange(
|
| protocol::ConnectionToClient* connection,
|
| const std::string& channel_name,
|
| - const net::IPEndPoint& remote_end_point,
|
| - const net::IPEndPoint& local_end_point) {
|
| + const protocol::TransportRoute& route) {
|
| DCHECK(CalledOnValidThread());
|
| DCHECK_EQ(connection_.get(), connection);
|
| - event_handler_->OnSessionRouteChange(this, channel_name, remote_end_point,
|
| - local_end_point);
|
| + event_handler_->OnSessionRouteChange(this, channel_name, route);
|
| }
|
|
|
| void ClientSession::Disconnect() {
|
|
|