| Index: remoting/host/chromoting_host.cc
|
| diff --git a/remoting/host/chromoting_host.cc b/remoting/host/chromoting_host.cc
|
| index ab3478aa3f56333fd84190b3c792211577918f24..35b017c0d391e8d4117a044ec0be5496d364e2cb 100644
|
| --- a/remoting/host/chromoting_host.cc
|
| +++ b/remoting/host/chromoting_host.cc
|
| @@ -222,12 +222,11 @@ void ChromotingHost::OnSessionSequenceNumber(ClientSession* session,
|
| void ChromotingHost::OnSessionRouteChange(
|
| ClientSession* session,
|
| const std::string& channel_name,
|
| - const net::IPEndPoint& remote_end_point,
|
| - const net::IPEndPoint& local_end_point) {
|
| + const protocol::TransportRoute& route) {
|
| DCHECK(context_->network_message_loop()->BelongsToCurrentThread());
|
| FOR_EACH_OBSERVER(HostStatusObserver, status_observers_,
|
| OnClientRouteChange(session->client_jid(), channel_name,
|
| - remote_end_point, local_end_point));
|
| + route));
|
| }
|
|
|
| void ChromotingHost::OnSessionManagerReady() {
|
|
|