| Index: remoting/host/client_session.cc
|
| diff --git a/remoting/host/client_session.cc b/remoting/host/client_session.cc
|
| index 140f4c54064cb3b4b5ff2b04f354589b153ea431..034196045f95d9ca6524245caab46cee6a2837ce 100644
|
| --- a/remoting/host/client_session.cc
|
| +++ b/remoting/host/client_session.cc
|
| @@ -127,10 +127,12 @@ void ClientSession::OnSequenceNumberUpdated(
|
|
|
| void ClientSession::OnClientIpAddress(protocol::ConnectionToClient* connection,
|
| const std::string& channel_name,
|
| - const net::IPEndPoint& end_point) {
|
| + const net::IPEndPoint& end_point,
|
| + const net::IPEndPoint& local_end_point) {
|
| DCHECK(CalledOnValidThread());
|
| DCHECK_EQ(connection_.get(), connection);
|
| - event_handler_->OnSessionIpAddress(this, channel_name, end_point);
|
| + event_handler_->OnSessionIpAddress(this, channel_name, end_point,
|
| + local_end_point);
|
| }
|
|
|
| void ClientSession::Disconnect() {
|
|
|