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

Unified Diff: remoting/host/chromoting_messages.h

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/BUILD.gn ('k') | remoting/host/daemon_process.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/chromoting_messages.h
diff --git a/remoting/host/chromoting_messages.h b/remoting/host/chromoting_messages.h
index 8a60aa11ad374b196d3ae685bb8c8f9a929c7ffb..db17927c5ab3d37be6640901ccc593ee5580f2c1 100644
--- a/remoting/host/chromoting_messages.h
+++ b/remoting/host/chromoting_messages.h
@@ -9,7 +9,6 @@
#include "base/memory/shared_memory_handle.h"
#include "ipc/ipc_platform_file.h"
-#include "net/base/ip_endpoint.h"
#include "remoting/host/chromoting_param_traits.h"
#include "remoting/host/screen_resolution.h"
#include "remoting/protocol/errors.h"
@@ -89,8 +88,10 @@ IPC_MESSAGE_CONTROL2(ChromotingNetworkDaemonMsg_SetScreenResolution,
// Serialized remoting::protocol::TransportRoute structure.
IPC_STRUCT_BEGIN(SerializedTransportRoute)
IPC_STRUCT_MEMBER(remoting::protocol::TransportRoute::RouteType, type)
- IPC_STRUCT_MEMBER(net::IPEndPoint, remote_address)
- IPC_STRUCT_MEMBER(net::IPEndPoint, local_address)
+ IPC_STRUCT_MEMBER(std::vector<uint8_t>, remote_ip)
+ IPC_STRUCT_MEMBER(uint16_t, remote_port)
+ IPC_STRUCT_MEMBER(std::vector<uint8_t>, local_ip)
+ IPC_STRUCT_MEMBER(uint16_t, local_port)
IPC_STRUCT_END()
IPC_ENUM_TRAITS_MAX_VALUE(remoting::protocol::TransportRoute::RouteType,
« no previous file with comments | « remoting/host/BUILD.gn ('k') | remoting/host/daemon_process.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698