Chromium Code Reviews| Index: remoting/protocol/connection_to_client.h |
| diff --git a/remoting/protocol/connection_to_client.h b/remoting/protocol/connection_to_client.h |
| index 9a927246dfca3373c634b5d8684bca76091242b3..291e5678ef20f55469b9b66e18442ebb391578fc 100644 |
| --- a/remoting/protocol/connection_to_client.h |
| +++ b/remoting/protocol/connection_to_client.h |
| @@ -55,7 +55,8 @@ class ConnectionToClient : public base::NonThreadSafe { |
| // channel is connected. |
| virtual void OnClientIpAddress(ConnectionToClient* connection, |
|
Sergey Ulanov
2012/02/02 01:10:23
Maybe rename it to OnRouteChange()?
Lambros
2012/02/02 01:48:12
Done.
|
| const std::string& channel_name, |
| - const net::IPEndPoint& end_point) = 0; |
| + const net::IPEndPoint& end_point, |
| + const net::IPEndPoint& local_endpoint) = 0; |
|
Sergey Ulanov
2012/02/02 01:10:23
s/endpoint/end_point/
Lambros
2012/02/02 01:48:12
Done.
|
| }; |
| // Constructs a ConnectionToClient object for the |session|. Takes |
| @@ -92,7 +93,8 @@ class ConnectionToClient : public base::NonThreadSafe { |
| void OnSessionStateChange(Session::State state); |
| void OnSessionRouteChange(const std::string& channel_name, |
| - const net::IPEndPoint& end_point); |
| + const net::IPEndPoint& end_point, |
| + const net::IPEndPoint& local_end_point); |
| // Callback for channel initialization. |
| void OnChannelInitialized(bool successful); |