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

Unified Diff: remoting/host/ipc_host_event_logger.cc

Issue 2365213002: Remove content dependency from remoting/host (Closed)
Patch Set: . Created 4 years, 3 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/daemon_process.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/ipc_host_event_logger.cc
diff --git a/remoting/host/ipc_host_event_logger.cc b/remoting/host/ipc_host_event_logger.cc
index 24b04edc4dd471aeeaf6ef0973edcbeb2d51c24f..3ebebc6fbcc2877c40f6b9857d53edac95bd2182 100644
--- a/remoting/host/ipc_host_event_logger.cc
+++ b/remoting/host/ipc_host_event_logger.cc
@@ -60,9 +60,10 @@ void IpcHostEventLogger::OnClientRouteChange(
SerializedTransportRoute serialized_route;
serialized_route.type = route.type;
- serialized_route.remote_address = route.remote_address;
- serialized_route.local_address = route.local_address;
-
+ serialized_route.remote_ip = route.remote_address.address().bytes();
+ serialized_route.remote_port = route.remote_address.port();
+ serialized_route.local_ip = route.local_address.address().bytes();
+ serialized_route.local_port = route.local_address.port();
daemon_channel_->Send(new ChromotingNetworkDaemonMsg_ClientRouteChange(
jid, channel_name, serialized_route));
}
« no previous file with comments | « remoting/host/daemon_process.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698