| Index: remoting/protocol/connection_to_client.cc
|
| diff --git a/remoting/protocol/connection_to_client.cc b/remoting/protocol/connection_to_client.cc
|
| index ea17201895b9ba347439467332eba312b7f70374..69b16248b0a0c1b126f4d9cdc2a40f870fb50d1e 100644
|
| --- a/remoting/protocol/connection_to_client.cc
|
| +++ b/remoting/protocol/connection_to_client.cc
|
| @@ -135,8 +135,11 @@ void ConnectionToClient::OnSessionStateChange(Session::State state) {
|
| }
|
|
|
| void ConnectionToClient::OnSessionRouteChange(
|
| - const std::string& channel_name, const net::IPEndPoint& end_point) {
|
| - handler_->OnClientIpAddress(this, channel_name, end_point);
|
| + const std::string& channel_name,
|
| + const net::IPEndPoint& remote_end_point,
|
| + const net::IPEndPoint& local_end_point) {
|
| + handler_->OnRouteChange(this, channel_name, remote_end_point,
|
| + local_end_point);
|
| }
|
|
|
| void ConnectionToClient::OnChannelInitialized(bool successful) {
|
|
|