| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_COMMON_P2P_MESSAGES_H_ |
| 6 #define CONTENT_COMMON_P2P_MESSAGES_H_ |
| 7 |
| 5 // IPC messages for the P2P Transport API. | 8 // IPC messages for the P2P Transport API. |
| 6 // Multiply-included message file, hence no include guard. | 9 // Multiply-included message file, hence no include guard. |
| 7 | 10 |
| 8 #include <stdint.h> | 11 #include <stdint.h> |
| 9 | 12 |
| 10 #include "base/time/time.h" | 13 #include "base/time/time.h" |
| 11 #include "content/common/content_export.h" | 14 #include "content/common/content_export.h" |
| 12 #include "content/common/p2p_socket_type.h" | 15 #include "content/common/p2p_socket_type.h" |
| 13 #include "ipc/ipc_message_macros.h" | 16 #include "ipc/ipc_message_macros.h" |
| 14 #include "net/base/ip_address.h" | 17 #include "net/base/ip_address.h" |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 rtc::PacketOptions /* packet options */, | 132 rtc::PacketOptions /* packet options */, |
| 130 uint64_t /* packet_id */) | 133 uint64_t /* packet_id */) |
| 131 | 134 |
| 132 IPC_MESSAGE_CONTROL1(P2PHostMsg_DestroySocket, | 135 IPC_MESSAGE_CONTROL1(P2PHostMsg_DestroySocket, |
| 133 int /* socket_id */) | 136 int /* socket_id */) |
| 134 | 137 |
| 135 IPC_MESSAGE_CONTROL3(P2PHostMsg_SetOption, | 138 IPC_MESSAGE_CONTROL3(P2PHostMsg_SetOption, |
| 136 int /* socket_id */, | 139 int /* socket_id */, |
| 137 content::P2PSocketOption /* socket option type */, | 140 content::P2PSocketOption /* socket option type */, |
| 138 int /* value */) | 141 int /* value */) |
| 142 |
| 143 #endif // CONTENT_COMMON_P2P_MESSAGES_H_ |
| OLD | NEW |