Chromium Code Reviews| Index: ppapi/proxy/ppapi_messages.h |
| diff --git a/ppapi/proxy/ppapi_messages.h b/ppapi/proxy/ppapi_messages.h |
| index 56acc45f311048e16182ebfcca910c617fe7e1a1..a4d2201d3ce057ad2fa2be7f50f41d0942c5dcfd 100644 |
| --- a/ppapi/proxy/ppapi_messages.h |
| +++ b/ppapi/proxy/ppapi_messages.h |
| @@ -2028,6 +2028,31 @@ IPC_MESSAGE_CONTROL3(PpapiPluginMsg_VideoSource_GetFrameReply, |
| PP_TimeTicks /* timestamp */) |
| IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_Close) |
| +// VpnProvider ---------------------------------------------------------------- |
| +IPC_MESSAGE_CONTROL0(PpapiHostMsg_VpnProvider_Create) |
| + |
| +// VpnProvider Plugin -> Browser Messages |
|
dcheng
2016/07/04 04:24:07
Are these comments accurate? i see PpapiHostMsg an
adrian.belgun
2016/07/04 14:28:32
Initially it was split into 4 parts
- Plugin -> B
dcheng
2016/07/05 07:12:48
That's fine, but that makes this comment not entir
adrian.belgun
2016/07/05 08:24:29
Done.
|
| +IPC_MESSAGE_CONTROL2(PpapiHostMsg_VpnProvider_Bind, |
| + std::string /* configuration_id */, |
| + std::string /* configuration_name */) |
| +IPC_MESSAGE_CONTROL3(PpapiPluginMsg_VpnProvider_BindReply, |
| + uint32_t /* queue_size */, |
| + uint32_t /* max_packet_size */, |
| + int32_t /* status */) |
| +IPC_MESSAGE_CONTROL2(PpapiHostMsg_VpnProvider_SendPacket, |
| + uint32_t /* packet_size */, |
| + uint32_t /* id */) |
| +IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VpnProvider_SendPacketReply, |
| + uint32_t /* id */) |
| + |
| +// VpnProvider Browser -> Plugin Messages |
| +IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VpnProvider_OnUnbind) |
| +IPC_MESSAGE_CONTROL2(PpapiPluginMsg_VpnProvider_OnPacketReceived, |
| + uint32_t /* packet_size */, |
| + uint32_t /* id */) |
| +IPC_MESSAGE_CONTROL1(PpapiHostMsg_VpnProvider_OnPacketReceivedReply, |
| + uint32_t /* id */) |
| + |
| // WebSocket ------------------------------------------------------------------- |
| IPC_MESSAGE_CONTROL0(PpapiHostMsg_WebSocket_Create) |