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

Unified Diff: remoting/host/ipc_host_event_logger.cc

Issue 1853643007: Migrate remoting to net::IPAddress. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments wez Created 4 years, 8 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') | remoting/protocol/ssl_hmac_channel_authenticator.cc » ('j') | 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 e5c3dad1d97d15b840b914525a44d1ea2ffe7648..24b04edc4dd471aeeaf6ef0973edcbeb2d51c24f 100644
--- a/remoting/host/ipc_host_event_logger.cc
+++ b/remoting/host/ipc_host_event_logger.cc
@@ -60,10 +60,8 @@ void IpcHostEventLogger::OnClientRouteChange(
SerializedTransportRoute serialized_route;
serialized_route.type = route.type;
- serialized_route.remote_address = route.remote_address.address().bytes();
- serialized_route.remote_port = route.remote_address.port();
- serialized_route.local_address = route.local_address.address().bytes();
- serialized_route.local_port = route.local_address.port();
+ serialized_route.remote_address = route.remote_address;
+ serialized_route.local_address = route.local_address;
daemon_channel_->Send(new ChromotingNetworkDaemonMsg_ClientRouteChange(
jid, channel_name, serialized_route));
« no previous file with comments | « remoting/host/daemon_process.cc ('k') | remoting/protocol/ssl_hmac_channel_authenticator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698