Chromium Code Reviews| Index: ppapi/proxy/ppapi_messages.h |
| diff --git a/ppapi/proxy/ppapi_messages.h b/ppapi/proxy/ppapi_messages.h |
| index 20a33f32585ff5f70e04c2ac1f53c3ec33f67d1b..48161798369fa9aee788282c04fa7b5d769a7b6a 100644 |
| --- a/ppapi/proxy/ppapi_messages.h |
| +++ b/ppapi/proxy/ppapi_messages.h |
| @@ -35,6 +35,7 @@ |
| #include "ppapi/c/private/ppb_host_resolver_private.h" |
| #include "ppapi/c/private/ppb_net_address_private.h" |
| #include "ppapi/c/private/ppb_tcp_socket_private.h" |
| +#include "ppapi/c/private/ppb_udp_socket_private.h" |
| #include "ppapi/c/private/ppp_flash_browser_operations.h" |
| #include "ppapi/proxy/ppapi_param_traits.h" |
| #include "ppapi/proxy/ppapi_proxy_export.h" |
| @@ -63,12 +64,13 @@ IPC_ENUM_TRAITS(PP_FlashSetting) |
| IPC_ENUM_TRAITS(PP_InputEvent_MouseButton) |
| IPC_ENUM_TRAITS(PP_InputEvent_Type) |
| IPC_ENUM_TRAITS(PP_NetAddressFamily_Private) |
| -IPC_ENUM_TRAITS(PP_NetworkListType_Private) |
| IPC_ENUM_TRAITS(PP_NetworkListState_Private) |
| +IPC_ENUM_TRAITS(PP_NetworkListType_Private) |
| IPC_ENUM_TRAITS(PP_PrintOrientation_Dev) |
| IPC_ENUM_TRAITS(PP_PrintOutputFormat_Dev) |
| IPC_ENUM_TRAITS(PP_PrintScalingOption_Dev) |
| IPC_ENUM_TRAITS(PP_TextInput_Type) |
| +IPC_ENUM_TRAITS(PP_UDPSocketFeature_Private) |
| IPC_ENUM_TRAITS(PP_VideoDecodeError_Dev) |
| IPC_ENUM_TRAITS(PP_VideoDecoder_Profile) |
| @@ -611,6 +613,10 @@ IPC_MESSAGE_ROUTED4(PpapiMsg_PPBTCPSocket_WriteACK, |
| int32_t /* bytes_written */) |
| // PPB_UDPSocket_Private. |
| +IPC_MESSAGE_ROUTED3(PpapiMsg_PPBUDPSocket_SetSocketFeatureACK, |
| + uint32 /* plugin_dispatcher_id */, |
| + uint32 /* socket_id */, |
| + bool /* succeeded */) |
| IPC_MESSAGE_ROUTED4(PpapiMsg_PPBUDPSocket_BindACK, |
| uint32 /* plugin_dispatcher_id */, |
| uint32 /* socket_id */, |
| @@ -1375,6 +1381,11 @@ IPC_SYNC_MESSAGE_CONTROL2_1(PpapiHostMsg_PPBUDPSocket_Create, |
| int32 /* routing_id */, |
| uint32 /* plugin_dispatcher_id */, |
| uint32 /* socket_id */) |
| +IPC_MESSAGE_CONTROL4(PpapiHostMsg_PPBUDPSocket_SetBoolSocketFeature, |
| + int32 /* routing_id */, |
| + uint32 /* socket_id */, |
| + PP_UDPSocketFeature_Private /* name */, |
|
brettw
2012/08/20 04:34:45
For the enums we should cast them to int32s. This
ygorshenin1
2012/08/20 12:08:01
Done.
|
| + bool /* value */) |
| IPC_MESSAGE_CONTROL3(PpapiHostMsg_PPBUDPSocket_Bind, |
| int32 /* routing_id */, |
| uint32 /* socket_id */, |