Chromium Code Reviews| Index: ppapi/proxy/ppapi_messages.h |
| diff --git a/ppapi/proxy/ppapi_messages.h b/ppapi/proxy/ppapi_messages.h |
| index 33d182fadcdf0ad3e45c04b869ee737d61bfd05e..f4586d8590df9979591eb71b74f5d12084449730 100644 |
| --- a/ppapi/proxy/ppapi_messages.h |
| +++ b/ppapi/proxy/ppapi_messages.h |
| @@ -47,6 +47,7 @@ |
| #include "ppapi/c/ppb_text_input_controller.h" |
| #include "ppapi/c/ppb_udp_socket.h" |
| #include "ppapi/c/ppb_video_encoder.h" |
| +#include "ppapi/c/ppb_vpn_provider.h" |
| #include "ppapi/c/private/pp_content_decryptor.h" |
| #include "ppapi/c/private/pp_private_font_charset.h" |
| #include "ppapi/c/private/pp_video_capture_format.h" |
| @@ -1985,6 +1986,35 @@ IPC_MESSAGE_CONTROL3(PpapiPluginMsg_VideoSource_GetFrameReply, |
| PP_TimeTicks /* timestamp */) |
| IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoSource_Close) |
| +// VPN Provider ---------------------------------------------------------------- |
| +IPC_MESSAGE_CONTROL0(PpapiHostMsg_VpnProvider_Create) |
| + |
| +// VPN Provider Plugin -> Browser Messages |
| +IPC_MESSAGE_CONTROL2(PpapiHostMsg_VpnProvider_Bind, |
| + std::string /* configuration_id */, |
| + std::string /* configuration_name */) |
| +IPC_MESSAGE_CONTROL2(PpapiHostMsg_VpnProvider_SendPacket, |
| + uint32_t /* data_length */, |
| + uint32_t /* id */) |
| + |
| +// VPN Provider Browser -> Plugin Replies |
| +IPC_MESSAGE_CONTROL3(PpapiPluginMsg_VpnProvider_BindReply, |
| + uint32_t /* queue_depth */, |
| + uint32_t /* packet_size */, |
| + int32_t /* status */) |
| +IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VpnProvider_SendPacketReply, |
| + int32_t /* id */) |
| + |
| +// VPN Provider Browser -> Plugin Messages |
| +IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VpnProvider_OnUnBind) |
|
bbudge
2016/04/26 18:25:21
Unbind is a word, so s/OnUnBind/OnUnbind
adrian.belgun
2016/04/27 14:55:21
Done.
|
| +IPC_MESSAGE_CONTROL2(PpapiPluginMsg_VpnProvider_OnPacketReceived, |
| + uint32_t /* data_length */, |
| + uint32_t /* id */) |
| + |
| +// VPN Provider Plugin --> Browser Replies |
| +IPC_MESSAGE_CONTROL1(PpapiHostMsg_VpnProvider_OnPacketReceivedReply, |
| + uint32_t /* id */) |
| + |
| // WebSocket ------------------------------------------------------------------- |
| IPC_MESSAGE_CONTROL0(PpapiHostMsg_WebSocket_Create) |