Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(224)

Unified Diff: remoting/host/client_session.cc

Issue 9727005: Log connection type to syslogs and to the server. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/host/client_session.h ('k') | remoting/host/host_event_logger_posix.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/client_session.cc
diff --git a/remoting/host/client_session.cc b/remoting/host/client_session.cc
index 81abc712c32ecba7ecc79b27b8e6c013bdb13f50..5439b074da08c1050bf39b4f66a423643020c3bf 100644
--- a/remoting/host/client_session.cc
+++ b/remoting/host/client_session.cc
@@ -138,12 +138,10 @@ void ClientSession::OnSequenceNumberUpdated(
void ClientSession::OnRouteChange(
protocol::ConnectionToClient* connection,
const std::string& channel_name,
- const net::IPEndPoint& remote_end_point,
- const net::IPEndPoint& local_end_point) {
+ const protocol::TransportRoute& route) {
DCHECK(CalledOnValidThread());
DCHECK_EQ(connection_.get(), connection);
- event_handler_->OnSessionRouteChange(this, channel_name, remote_end_point,
- local_end_point);
+ event_handler_->OnSessionRouteChange(this, channel_name, route);
}
void ClientSession::Disconnect() {
« no previous file with comments | « remoting/host/client_session.h ('k') | remoting/host/host_event_logger_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698