Index: remoting/host/chromoting_messages.h |
diff --git a/remoting/host/chromoting_messages.h b/remoting/host/chromoting_messages.h |
index c9c5e189eb394f939362b159e63a547cdf163374..1a0cb289981fe277baea458d40660f162e0d31ee 100644 |
--- a/remoting/host/chromoting_messages.h |
+++ b/remoting/host/chromoting_messages.h |
@@ -7,6 +7,8 @@ |
#include <stdint.h> |
+#include <vector> |
+ |
#include "base/memory/shared_memory_handle.h" |
#include "ipc/ipc_platform_file.h" |
#include "net/base/ip_endpoint.h" |
@@ -88,9 +90,9 @@ IPC_MESSAGE_CONTROL2(ChromotingNetworkDaemonMsg_SetScreenResolution, |
// Serialized remoting::protocol::TransportRoute structure. |
IPC_STRUCT_BEGIN(SerializedTransportRoute) |
IPC_STRUCT_MEMBER(int, type) |
- IPC_STRUCT_MEMBER(net::IPAddressNumber, remote_address) |
+ IPC_STRUCT_MEMBER(std::vector<uint8_t>, remote_address) |
dcheng
2016/04/04 18:40:36
This is kind of unfortunate: content already has a
martijnc
2016/04/05 17:02:35
Added ParamTraits for net::IPAddress and net::IPEn
|
IPC_STRUCT_MEMBER(uint16_t, remote_port) |
- IPC_STRUCT_MEMBER(net::IPAddressNumber, local_address) |
+ IPC_STRUCT_MEMBER(std::vector<uint8_t>, local_address) |
IPC_STRUCT_MEMBER(uint16_t, local_port) |
IPC_STRUCT_END() |
@@ -268,4 +270,4 @@ IPC_MESSAGE_CONTROL1(ChromotingNetworkToRemoteSecurityKeyMsg_ConnectionDetails, |
// The array of bytes representing a security key response from the remote |
// client. This message is sent over the per-client IPC channel. |
IPC_MESSAGE_CONTROL1(ChromotingNetworkToRemoteSecurityKeyMsg_Response, |
- std::string /* response bytes */) |
+ std::string /* response bytes */) |