| Index: remoting/host/chromoting_host.cc
 | 
| diff --git a/remoting/host/chromoting_host.cc b/remoting/host/chromoting_host.cc
 | 
| index 63ac7bcce22641458c131c3d495da68fa86e6193..c1958ff85ce4e2328d8f3eb1a82df55c83018cba 100644
 | 
| --- a/remoting/host/chromoting_host.cc
 | 
| +++ b/remoting/host/chromoting_host.cc
 | 
| @@ -225,6 +225,13 @@ void ChromotingHost::OnSessionSequenceNumber(ClientSession* session,
 | 
|      recorder_->UpdateSequenceNumber(sequence_number);
 | 
|  }
 | 
|  
 | 
| +void ChromotingHost::OnSessionIpEndPoint(ClientSession* session,
 | 
| +                                         const std::string& channel_name,
 | 
| +                                         const net::IPEndPoint& end_point) {
 | 
| +  // TODO(lambroslambrou): Notify the HostStatusObservers via a new interface
 | 
| +  // method.
 | 
| +}
 | 
| +
 | 
|  void ChromotingHost::OnSessionManagerReady() {
 | 
|    DCHECK(context_->network_message_loop()->BelongsToCurrentThread());
 | 
|    // Don't need to do anything here, just wait for incoming
 | 
| 
 |