Chromium Code Reviews| Index: remoting/host/chromoting_host.h |
| diff --git a/remoting/host/chromoting_host.h b/remoting/host/chromoting_host.h |
| index eb7364d3a34a3250c2e939ff37d7bb425b4b93d2..ac3b22fe75c8e06ec5d78141e88553e00490eec1 100644 |
| --- a/remoting/host/chromoting_host.h |
| +++ b/remoting/host/chromoting_host.h |
| @@ -24,6 +24,10 @@ |
| #include "remoting/protocol/session_manager.h" |
| #include "remoting/protocol/connection_to_client.h" |
| +namespace net { |
| +class IpEndPoint; |
|
Sergey Ulanov
2012/01/25 01:56:48
remove this as we discussed
Lambros
2012/01/25 19:27:10
Done.
|
| +} // namespace net |
| + |
| namespace remoting { |
| namespace protocol { |
| @@ -110,6 +114,9 @@ class ChromotingHost : public base::RefCountedThreadSafe<ChromotingHost>, |
| virtual void OnSessionClosed(ClientSession* session) OVERRIDE; |
| virtual void OnSessionSequenceNumber(ClientSession* session, |
| int64 sequence_number) OVERRIDE; |
| + virtual void OnSessionIpEndPoint(ClientSession* session, |
| + const std::string& channel_name, |
| + const net::IPEndPoint& end_point) OVERRIDE; |
| // SessionManager::Listener implementation. |
| virtual void OnSessionManagerReady() OVERRIDE; |